From 1f6fcec334685c8449a56a053fe8d43d4794478c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 24 Dec 1993 02:44:13 +0000 Subject: [PATCH] (next-complete-history-element): Doc fix. (previous-complete-history-element): Doc fix. --- lisp/simple.el | 6 +++--- 1 file 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." (next-history-element (- n))) (defun next-complete-history-element (n) - "\ -Get previous element of history which is a completion of minibuffer contents." + "Get next element of history which is a completion of minibuffer contents." (interactive "p") (let ((point-at-start (point))) (next-matching-history-element @@ -581,7 +580,8 @@ Get previous element of history which is a completion of minibuffer contents." (goto-char point-at-start))) (defun previous-complete-history-element (n) - "Get next element of history which is a completion of minibuffer contents." + "\ +Get previous element of history which is a completion of minibuffer contents." (interactive "p") (next-complete-history-element (- n))) -- 2.39.5