diff options
| author | Richard M. Stallman | 1993-12-24 02:44:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-24 02:44:13 +0000 |
| commit | 1f6fcec334685c8449a56a053fe8d43d4794478c (patch) | |
| tree | 860e89cbd2e5c5a7b53442febf381274dc137946 | |
| parent | 3f849529a6f1433abea65a17a6fcd4ccd4d4bd13 (diff) | |
| download | emacs-1f6fcec334685c8449a56a053fe8d43d4794478c.tar.gz emacs-1f6fcec334685c8449a56a053fe8d43d4794478c.zip | |
(next-complete-history-element): Doc fix.
(previous-complete-history-element): Doc fix.
| -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 85557739654..6f5b0bc4ccf 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -569,8 +569,7 @@ If N is negative, find the previous or Nth previous match." | |||
| 569 | (next-history-element (- n))) | 569 | (next-history-element (- n))) |
| 570 | 570 | ||
| 571 | (defun next-complete-history-element (n) | 571 | (defun next-complete-history-element (n) |
| 572 | "\ | 572 | "Get next element of history which is a completion of minibuffer contents." |
| 573 | Get previous element of history which is a completion of minibuffer contents." | ||
| 574 | (interactive "p") | 573 | (interactive "p") |
| 575 | (let ((point-at-start (point))) | 574 | (let ((point-at-start (point))) |
| 576 | (next-matching-history-element | 575 | (next-matching-history-element |
| @@ -581,7 +580,8 @@ Get previous element of history which is a completion of minibuffer contents." | |||
| 581 | (goto-char point-at-start))) | 580 | (goto-char point-at-start))) |
| 582 | 581 | ||
| 583 | (defun previous-complete-history-element (n) | 582 | (defun previous-complete-history-element (n) |
| 584 | "Get next element of history which is a completion of minibuffer contents." | 583 | "\ |
| 584 | Get previous element of history which is a completion of minibuffer contents." | ||
| 585 | (interactive "p") | 585 | (interactive "p") |
| 586 | (next-complete-history-element (- n))) | 586 | (next-complete-history-element (- n))) |
| 587 | 587 | ||