# HG changeset patch # User Dave Love # Date 915737090 0 # Node ID a937ab82e54fe5dfdcdb68220c3874f47995557e # Parent cd4343d3cd019d4f011890945396c4ebc4101779 More doc fixes. diff -r cd4343d3cd01 -r a937ab82e54f lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Thu Jan 07 12:38:37 1999 +0000 +++ b/lisp/emacs-lisp/find-func.el Thu Jan 07 19:24:50 1999 +0000 @@ -271,7 +271,7 @@ ;;;###autoload (defun find-function (function) - "Find the definition of the function near point in the current window. + "Find the definition of the FUNCTION near point. Finds the Emacs Lisp library containing the definition of the function near point (selected by `function-at-point') in a buffer and @@ -286,7 +286,7 @@ ;;;###autoload (defun find-function-other-window (function) - "Find the definition of FUNCTION near point in the other window. + "Find, in another window, the definition of FUNCTION near point. See `find-function' for more details." (interactive (find-function-read)) @@ -294,7 +294,7 @@ ;;;###autoload (defun find-function-other-frame (function) - "Find the definition of FUNCTION near point in the another frame. + "Find, in ananother frame, the definition of FUNCTION near point. See `find-function' for more details." (interactive (find-function-read)) @@ -317,7 +317,7 @@ ;;;###autoload (defun find-variable (variable) - "Find the definition of the variable near point in the current window. + "Find the definition of the VARIABLE near point. Finds the Emacs Lisp library containing the definition of the variable near point (selected by `variable-at-point') in a buffer and @@ -332,7 +332,7 @@ ;;;###autoload (defun find-variable-other-window (variable) - "Find the definition of VARIABLE near point in the other window. + "Find, in another window, the definition of VARIABLE near point. See `find-variable' for more details." (interactive (find-function-read 'variable)) @@ -340,7 +340,7 @@ ;;;###autoload (defun find-variable-other-frame (variable) - "Find the definition of VARIABLE near point in the another frame. + "Find, in annother frame, the definition of VARIABLE near point. See `find-variable' for more details." (interactive (find-function-read 'variable))