* lisp/progmodes/gud.el (ctl-x-map): Remove C-x SPC binding.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 14 Nov 2013 20:20:11 +0000 (15:20 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 14 Nov 2013 20:20:11 +0000 (15:20 -0500)
(gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).

lisp/ChangeLog
lisp/progmodes/gud.el

index 1177d14..fd4ed2a 100644 (file)
@@ -1,3 +1,8 @@
+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):
index 14f6aa1..4097a9c 100644 (file)
@@ -66,7 +66,7 @@ pdb (Python), and jdb."
   :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)
@@ -2159,10 +2159,8 @@ relative to a classpath directory."
                    (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))