diff options
| author | Richard M. Stallman | 1993-06-26 04:20:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-26 04:20:42 +0000 |
| commit | 06ae9cf2a40cfc938f03dd21edd3348322fb6f4e (patch) | |
| tree | fb474d7af8bd89856544d4118e65ce1e68459004 | |
| parent | 4434d61b29d47440b6985e3ffa9ff037489ce71d (diff) | |
| download | emacs-06ae9cf2a40cfc938f03dd21edd3348322fb6f4e.tar.gz emacs-06ae9cf2a40cfc938f03dd21edd3348322fb6f4e.zip | |
(define-key-after): Renamed from define-key-in-sequence.
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index f866228ccc0..e7bc2e13a24 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -181,7 +181,7 @@ in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP." | |||
| 181 | (setq i (1+ i)))))) | 181 | (setq i (1+ i)))))) |
| 182 | (setq scan (cdr scan))))) | 182 | (setq scan (cdr scan))))) |
| 183 | 183 | ||
| 184 | (defun define-key-in-sequence (keymap key definition after) | 184 | (defun define-key-after (keymap key definition after) |
| 185 | "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding. | 185 | "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding. |
| 186 | This is like `define-key' except that the binding for KEY is placed | 186 | This is like `define-key' except that the binding for KEY is placed |
| 187 | just after the binding for the event AFTER, instead of at the beginning | 187 | just after the binding for the event AFTER, instead of at the beginning |