# HG changeset patch # User Richard M. Stallman # Date 756701053 0 # Node ID f091cdec77e250e7ee0d09e26e8da8fc8429f483 # Parent 44a59f6e114eba4ba3e0ff352be63dbc889061bc (next-complete-history-element): Doc fix. (previous-complete-history-element): Doc fix. diff -r 44a59f6e114e -r f091cdec77e2 lisp/simple.el --- a/lisp/simple.el Fri Dec 24 02:40:33 1993 +0000 +++ b/lisp/simple.el Fri Dec 24 02:44:13 1993 +0000 @@ -569,8 +569,7 @@ (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 @@ (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)))