]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/progmodes/idlw-shell.el: Cleanup after 2012-05-04T05:14:14Z!cyd@gnu.org.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 9 May 2012 00:45:34 +0000 (02:45 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 9 May 2012 00:45:34 +0000 (02:45 +0200)
(specs): Remove reference to deleted variable
`idlwave-shell-activate-alt-keybindings' and simplify.

lisp/ChangeLog
lisp/progmodes/idlw-shell.el

index ed74bd452fdc9781bc132aca7c4e9facd1676fbd..30e5ac3c7eb8a3851bd3576518dc955cd22f6be6 100644 (file)
@@ -1,5 +1,8 @@
 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
 
+       * progmodes/idlw-shell.el (specs): Remove reference to deleted
+       variable `idlwave-shell-activate-alt-keybindings' and simplify.
+
        * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
 
 2012-05-08  Glenn Morris  <rgm@gnu.org>
index ca51eef6e8ecd264a1964e039f892700878014c6..da8f30bab4337f17e3210fa3b47b7c274cd02273 100644 (file)
@@ -4183,12 +4183,8 @@ Otherwise, just expand the file name."
          ([(        ?[)]   ?[   idlwave-shell-goto-previous-bp t t)
          ([(        ?])]   ?]   idlwave-shell-goto-next-bp t t)
          ([(control ?f)]   ?f   idlwave-shell-window)))
-       (mod (cond ((and idlwave-shell-debug-modifiers
-                       (listp idlwave-shell-debug-modifiers)
-                       (not (equal '() idlwave-shell-debug-modifiers)))
-                  idlwave-shell-debug-modifiers)
-                 (idlwave-shell-activate-alt-keybindings
-                  '(alt))))
+       (mod (and (listp idlwave-shell-debug-modifiers)
+                idlwave-shell-debug-modifiers))
        (shift (memq 'shift mod))
        (mod-noshift (delete 'shift (copy-sequence mod)))
        s k1 c2 k2 cmd electric only-buffer cannotshift)