From: Richard M. Stallman Date: Fri, 24 Dec 1993 02:44:13 +0000 (+0000) Subject: (next-complete-history-element): Doc fix. X-Git-Tag: emacs-19.34~10527 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f6fcec334685c8449a56a053fe8d43d4794478c;p=emacs.git (next-complete-history-element): Doc fix. (previous-complete-history-element): Doc fix. --- 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)))