diff options
| author | Richard M. Stallman | 1992-07-24 03:49:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-07-24 03:49:00 +0000 |
| commit | 2c5e21c133a030ffee081f6088fca6fe6504749f (patch) | |
| tree | abb4b78cb38155a7b5ef4cfa3f1004625f50e3b1 | |
| parent | ebb61177e366e5783efa1d18c216f4528b306cf6 (diff) | |
| download | emacs-2c5e21c133a030ffee081f6088fca6fe6504749f.tar.gz emacs-2c5e21c133a030ffee081f6088fca6fe6504749f.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/simple.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index c607a9d1a32..ce91a7840b7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -415,9 +415,9 @@ Whilst editing the command, the following commands are available: | |||
| 415 | (defun previous-history-element (n) | 415 | (defun previous-history-element (n) |
| 416 | "Inserts the previous element of `command-history' into the minibuffer." | 416 | "Inserts the previous element of `command-history' into the minibuffer." |
| 417 | (interactive "p") | 417 | (interactive "p") |
| 418 | (if repeat-complex-command-flag | 418 | ;; (if repeat-complex-command-flag |
| 419 | (next-complex-command (- n)) | 419 | (next-history-element (- n))) |
| 420 | (repeat-complex-command 1))) | 420 | ;; (repeat-complex-command 1))) |
| 421 | 421 | ||
| 422 | (defun goto-line (arg) | 422 | (defun goto-line (arg) |
| 423 | "Goto line ARG, counting from line 1 at beginning of buffer." | 423 | "Goto line ARG, counting from line 1 at beginning of buffer." |