diff options
| author | Juanma Barranquero | 2006-12-10 23:13:39 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-12-10 23:13:39 +0000 |
| commit | 51d8b30ef81485d5b67df7133d5f687c2db10d12 (patch) | |
| tree | 492ae78bb6d60b5b1cc712111c778ba176769798 /src | |
| parent | 0493af6f9bdc238f711821919c9518e98644425a (diff) | |
| download | emacs-51d8b30ef81485d5b67df7133d5f687c2db10d12.tar.gz emacs-51d8b30ef81485d5b67df7133d5f687c2db10d12.zip | |
(Feval_buffer, Feval_region): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c index 6ce7c6a1aef..77de9025e36 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -481,7 +481,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii, | |||
| 481 | { | 481 | { |
| 482 | EMACS_TIME wait_time; | 482 | EMACS_TIME wait_time; |
| 483 | int sec, usec; | 483 | int sec, usec; |
| 484 | double duration = extract_float (seconds); | 484 | double duration = extract_float (seconds); |
| 485 | 485 | ||
| 486 | sec = (int) duration; | 486 | sec = (int) duration; |
| 487 | usec = (duration - sec) * 1000000; | 487 | usec = (duration - sec) * 1000000; |
| @@ -1552,7 +1552,7 @@ DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "", | |||
| 1552 | Programs can pass two arguments, BUFFER and PRINTFLAG. | 1552 | Programs can pass two arguments, BUFFER and PRINTFLAG. |
| 1553 | BUFFER is the buffer to evaluate (nil means use current buffer). | 1553 | BUFFER is the buffer to evaluate (nil means use current buffer). |
| 1554 | PRINTFLAG controls printing of output: | 1554 | PRINTFLAG controls printing of output: |
| 1555 | nil means discard it; anything else is stream for print. | 1555 | A value of nil means discard it; anything else is stream for print. |
| 1556 | 1556 | ||
| 1557 | If the optional third argument FILENAME is non-nil, | 1557 | If the optional third argument FILENAME is non-nil, |
| 1558 | it specifies the file name to use for `load-history'. | 1558 | it specifies the file name to use for `load-history'. |
| @@ -1601,7 +1601,7 @@ When called from programs, expects two arguments, | |||
| 1601 | giving starting and ending indices in the current buffer | 1601 | giving starting and ending indices in the current buffer |
| 1602 | of the text to be executed. | 1602 | of the text to be executed. |
| 1603 | Programs can pass third argument PRINTFLAG which controls output: | 1603 | Programs can pass third argument PRINTFLAG which controls output: |
| 1604 | nil means discard it; anything else is stream for printing it. | 1604 | A value of nil means discard it; anything else is stream for printing it. |
| 1605 | Also the fourth argument READ-FUNCTION, if non-nil, is used | 1605 | Also the fourth argument READ-FUNCTION, if non-nil, is used |
| 1606 | instead of `read' to read each expression. It gets one argument | 1606 | instead of `read' to read each expression. It gets one argument |
| 1607 | which is the input stream for reading characters. | 1607 | which is the input stream for reading characters. |