diff options
| author | Juanma Barranquero | 2007-02-11 02:16:37 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-02-11 02:16:37 +0000 |
| commit | 2f064abf1f5f55a5e735b261a43c70ac1599d345 (patch) | |
| tree | 3cfbdcaae6cb6ba911f0270186632697207b9e1f /src/buffer.c | |
| parent | f147a4f5046a1a84841a2c0440be9206666692d0 (diff) | |
| download | emacs-2f064abf1f5f55a5e735b261a43c70ac1599d345.tar.gz emacs-2f064abf1f5f55a5e735b261a43c70ac1599d345.zip | |
Reflow docstrings.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/buffer.c b/src/buffer.c index 493501ef0b9..b09d6e88f0b 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -419,7 +419,7 @@ The value is never nil. */) | |||
| 419 | XSETBUFFER (buf, b); | 419 | XSETBUFFER (buf, b); |
| 420 | Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil)); | 420 | Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil)); |
| 421 | 421 | ||
| 422 | /* An error in calling the function here (should someone redfine it) | 422 | /* An error in calling the function here (should someone redefine it) |
| 423 | can lead to infinite regress until you run out of stack. rms | 423 | can lead to infinite regress until you run out of stack. rms |
| 424 | says that's not worth protecting against. */ | 424 | says that's not worth protecting against. */ |
| 425 | if (!NILP (Ffboundp (Qucs_set_table_for_input))) | 425 | if (!NILP (Ffboundp (Qucs_set_table_for_input))) |
| @@ -791,9 +791,8 @@ DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buff | |||
| 791 | If there is no live buffer named NAME, then return NAME. | 791 | If there is no live buffer named NAME, then return NAME. |
| 792 | Otherwise modify name by appending `<NUMBER>', incrementing NUMBER | 792 | Otherwise modify name by appending `<NUMBER>', incrementing NUMBER |
| 793 | \(starting at 2) until an unused name is found, and then return that name. | 793 | \(starting at 2) until an unused name is found, and then return that name. |
| 794 | Optional second argument IGNORE specifies a name that is okay to use | 794 | Optional second argument IGNORE specifies a name that is okay to use (if |
| 795 | \(if it is in the sequence to be tried) | 795 | it is in the sequence to be tried) even if a buffer with that name exists. */) |
| 796 | even if a buffer with that name exists. */) | ||
| 797 | (name, ignore) | 796 | (name, ignore) |
| 798 | register Lisp_Object name, ignore; | 797 | register Lisp_Object name, ignore; |
| 799 | { | 798 | { |
| @@ -1132,8 +1131,8 @@ state of the current buffer. Use with care. */) | |||
| 1132 | DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick, | 1131 | DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick, |
| 1133 | 0, 1, 0, | 1132 | 0, 1, 0, |
| 1134 | doc: /* Return BUFFER's tick counter, incremented for each change in text. | 1133 | doc: /* Return BUFFER's tick counter, incremented for each change in text. |
| 1135 | Each buffer has a tick counter which is incremented each time the text in | 1134 | Each buffer has a tick counter which is incremented each time the |
| 1136 | that buffer is changed. It wraps around occasionally. | 1135 | text in that buffer is changed. It wraps around occasionally. |
| 1137 | No argument or nil as argument means use current buffer as BUFFER. */) | 1136 | No argument or nil as argument means use current buffer as BUFFER. */) |
| 1138 | (buffer) | 1137 | (buffer) |
| 1139 | register Lisp_Object buffer; | 1138 | register Lisp_Object buffer; |