+2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * progmodes/gud.el (ctl-x-map): Remove C-x SPC binding.
+ (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
+
2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
* subr.el (version-regexp-alist):
:group 'gud)
(global-set-key (vconcat gud-key-prefix "\C-l") 'gud-refresh)
-(define-key ctl-x-map " " 'gud-break) ;; backward compatibility hack
+;; (define-key ctl-x-map " " 'gud-break); backward compatibility hack
(defvar gud-marker-filter nil)
(put 'gud-marker-filter 'permanent-local t)
(split-string
;; Eliminate any subclass references in the class
;; name string. These start with a "$"
- ((lambda (x)
- (if (string-match "$.*" x)
- (replace-match "" t t x) p))
- p)
+ (if (string-match "$.*" p)
+ (replace-match "" t t p) p)
"\\.") "/")
".java"))
(cplist (append gud-jdb-sourcepath gud-jdb-classpath))