diff options
| author | Dave Love | 1999-01-07 19:24:50 +0000 |
|---|---|---|
| committer | Dave Love | 1999-01-07 19:24:50 +0000 |
| commit | c7efc2893d5f14af2d2d6bccd06e1770e441798e (patch) | |
| tree | 9a753847672c90371d6a3da4cbde8637aba79277 | |
| parent | cebc7051b4d3be9ca42fa9262dec87fd7d3c913e (diff) | |
| download | emacs-c7efc2893d5f14af2d2d6bccd06e1770e441798e.tar.gz emacs-c7efc2893d5f14af2d2d6bccd06e1770e441798e.zip | |
More doc fixes.
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 0be6d27a939..2a31042b813 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el | |||
| @@ -271,7 +271,7 @@ Point is saved in the buffer if it is one of the current buffers." | |||
| 271 | 271 | ||
| 272 | ;;;###autoload | 272 | ;;;###autoload |
| 273 | (defun find-function (function) | 273 | (defun find-function (function) |
| 274 | "Find the definition of the function near point in the current window. | 274 | "Find the definition of the FUNCTION near point. |
| 275 | 275 | ||
| 276 | Finds the Emacs Lisp library containing the definition of the function | 276 | Finds the Emacs Lisp library containing the definition of the function |
| 277 | near point (selected by `function-at-point') in a buffer and | 277 | near point (selected by `function-at-point') in a buffer and |
| @@ -286,7 +286,7 @@ See also `find-function-recenter-line' and `find-function-after-hook'." | |||
| 286 | 286 | ||
| 287 | ;;;###autoload | 287 | ;;;###autoload |
| 288 | (defun find-function-other-window (function) | 288 | (defun find-function-other-window (function) |
| 289 | "Find the definition of FUNCTION near point in the other window. | 289 | "Find, in another window, the definition of FUNCTION near point. |
| 290 | 290 | ||
| 291 | See `find-function' for more details." | 291 | See `find-function' for more details." |
| 292 | (interactive (find-function-read)) | 292 | (interactive (find-function-read)) |
| @@ -294,7 +294,7 @@ See `find-function' for more details." | |||
| 294 | 294 | ||
| 295 | ;;;###autoload | 295 | ;;;###autoload |
| 296 | (defun find-function-other-frame (function) | 296 | (defun find-function-other-frame (function) |
| 297 | "Find the definition of FUNCTION near point in the another frame. | 297 | "Find, in ananother frame, the definition of FUNCTION near point. |
| 298 | 298 | ||
| 299 | See `find-function' for more details." | 299 | See `find-function' for more details." |
| 300 | (interactive (find-function-read)) | 300 | (interactive (find-function-read)) |
| @@ -317,7 +317,7 @@ The library where VARIABLE is defined is searched for in | |||
| 317 | 317 | ||
| 318 | ;;;###autoload | 318 | ;;;###autoload |
| 319 | (defun find-variable (variable) | 319 | (defun find-variable (variable) |
| 320 | "Find the definition of the variable near point in the current window. | 320 | "Find the definition of the VARIABLE near point. |
| 321 | 321 | ||
| 322 | Finds the Emacs Lisp library containing the definition of the variable | 322 | Finds the Emacs Lisp library containing the definition of the variable |
| 323 | near point (selected by `variable-at-point') in a buffer and | 323 | near point (selected by `variable-at-point') in a buffer and |
| @@ -332,7 +332,7 @@ See also `find-function-recenter-line' and `find-function-after-hook'." | |||
| 332 | 332 | ||
| 333 | ;;;###autoload | 333 | ;;;###autoload |
| 334 | (defun find-variable-other-window (variable) | 334 | (defun find-variable-other-window (variable) |
| 335 | "Find the definition of VARIABLE near point in the other window. | 335 | "Find, in another window, the definition of VARIABLE near point. |
| 336 | 336 | ||
| 337 | See `find-variable' for more details." | 337 | See `find-variable' for more details." |
| 338 | (interactive (find-function-read 'variable)) | 338 | (interactive (find-function-read 'variable)) |
| @@ -340,7 +340,7 @@ See `find-variable' for more details." | |||
| 340 | 340 | ||
| 341 | ;;;###autoload | 341 | ;;;###autoload |
| 342 | (defun find-variable-other-frame (variable) | 342 | (defun find-variable-other-frame (variable) |
| 343 | "Find the definition of VARIABLE near point in the another frame. | 343 | "Find, in annother frame, the definition of VARIABLE near point. |
| 344 | 344 | ||
| 345 | See `find-variable' for more details." | 345 | See `find-variable' for more details." |
| 346 | (interactive (find-function-read 'variable)) | 346 | (interactive (find-function-read 'variable)) |