emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/subr.el


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Mon, 26 Aug 2002 08:38:59 -0400

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.318 emacs/lisp/subr.el:1.319
*** emacs/lisp/subr.el:1.318    Sat Aug 24 10:40:09 2002
--- emacs/lisp/subr.el  Mon Aug 26 08:38:59 2002
***************
*** 279,285 ****
    "Make MAP override all normally self-inserting keys to be undefined.
  Normally, as an exception, digits and minus-sign are set to make prefix args,
  but optional second arg NODIGITS non-nil treats them like other chars."
!   (substitute-key-definition 'self-insert-command 'undefined map global-map)
    (or nodigits
        (let (loop)
        (define-key map "-" 'negative-argument)
--- 279,285 ----
    "Make MAP override all normally self-inserting keys to be undefined.
  Normally, as an exception, digits and minus-sign are set to make prefix args,
  but optional second arg NODIGITS non-nil treats them like other chars."
!   (define-key map [remap self-insert-command] 'undefined)
    (or nodigits
        (let (loop)
        (define-key map "-" 'negative-argument)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]