diff options
| author | Thien-Thi Nguyen | 2006-07-05 07:53:25 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2006-07-05 07:53:25 +0000 |
| commit | 4c242e964dd22c05aec71f00cdee9b392ba1b968 (patch) | |
| tree | b03b9f74618b23f43d14994713b218bd991c07c1 | |
| parent | 529eacf72609d6b588f6ba3c3820dcd50c8b9c0c (diff) | |
| download | emacs-4c242e964dd22c05aec71f00cdee9b392ba1b968.tar.gz emacs-4c242e964dd22c05aec71f00cdee9b392ba1b968.zip | |
(Lisp Eval): Througout, replace eval-current-buffer with eval-buffer.
| -rw-r--r-- | man/building.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/building.texi b/man/building.texi index b46994d486f..e3ca90f2863 100644 --- a/man/building.texi +++ b/man/building.texi | |||
| @@ -1250,7 +1250,7 @@ Evaluate the defun containing or after point, and print the value in | |||
| 1250 | the echo area (@code{eval-defun}). | 1250 | the echo area (@code{eval-defun}). |
| 1251 | @item M-x eval-region | 1251 | @item M-x eval-region |
| 1252 | Evaluate all the Lisp expressions in the region. | 1252 | Evaluate all the Lisp expressions in the region. |
| 1253 | @item M-x eval-current-buffer | 1253 | @item M-x eval-buffer |
| 1254 | Evaluate all the Lisp expressions in the buffer. | 1254 | Evaluate all the Lisp expressions in the buffer. |
| 1255 | @end table | 1255 | @end table |
| 1256 | 1256 | ||
| @@ -1305,11 +1305,11 @@ displaying it in the echo area. The argument's value does not matter. | |||
| 1305 | definition for Edebug (@pxref{Instrumenting, Instrumenting for Edebug,, elisp, the Emacs Lisp Reference Manual}). | 1305 | definition for Edebug (@pxref{Instrumenting, Instrumenting for Edebug,, elisp, the Emacs Lisp Reference Manual}). |
| 1306 | 1306 | ||
| 1307 | @findex eval-region | 1307 | @findex eval-region |
| 1308 | @findex eval-current-buffer | 1308 | @findex eval-buffer |
| 1309 | The most general command for evaluating Lisp expressions from a buffer | 1309 | The most general command for evaluating Lisp expressions from a buffer |
| 1310 | is @code{eval-region}. @kbd{M-x eval-region} parses the text of the | 1310 | is @code{eval-region}. @kbd{M-x eval-region} parses the text of the |
| 1311 | region as one or more Lisp expressions, evaluating them one by one. | 1311 | region as one or more Lisp expressions, evaluating them one by one. |
| 1312 | @kbd{M-x eval-current-buffer} is similar but evaluates the entire | 1312 | @kbd{M-x eval-buffer} is similar but evaluates the entire |
| 1313 | buffer. This is a reasonable way to install the contents of a file of | 1313 | buffer. This is a reasonable way to install the contents of a file of |
| 1314 | Lisp code that you are ready to test. Later, as you find bugs and | 1314 | Lisp code that you are ready to test. Later, as you find bugs and |
| 1315 | change individual functions, use @kbd{C-M-x} on each function that you | 1315 | change individual functions, use @kbd{C-M-x} on each function that you |