lisp/progmodes/idlw-shell.el: Cleanup after 2012-05-04T05:14:14Z!cyd@gnu.org.

(specs): Remove reference to deleted variable
`idlwave-shell-activate-alt-keybindings' and simplify.
This commit is contained in:
Juanma Barranquero 2012-05-09 02:45:34 +02:00
parent b499d8d02c
commit 4824146aa8
2 changed files with 5 additions and 6 deletions

View 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>

View 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)