aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorMiles Bader2007-02-13 12:14:16 +0000
committerMiles Bader2007-02-13 12:14:16 +0000
commit18c36727661b0db59afb9311cd363902712b5f21 (patch)
tree8af3ead70599b166c87c8d55d372590b7b50dea5 /src/buffer.c
parent2658843ecafae493a461232249a53f86f85a10d8 (diff)
parent409d26134b3de40bac01dffab971ed18014ae355 (diff)
downloademacs-18c36727661b0db59afb9311cd363902712b5f21.tar.gz
emacs-18c36727661b0db59afb9311cd363902712b5f21.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 624-636) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 200-201) - Merge from emacs--devo--0 - Update from CVS: lisp/nnweb.el (nnweb-google-parse-1): Update parser. Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-171
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 2361cce3882..a86edc4f430 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -420,7 +420,7 @@ The value is never nil. */)
420 XSETBUFFER (buf, b); 420 XSETBUFFER (buf, b);
421 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil)); 421 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
422 422
423 /* An error in calling the function here (should someone redfine it) 423 /* An error in calling the function here (should someone redefine it)
424 can lead to infinite regress until you run out of stack. rms 424 can lead to infinite regress until you run out of stack. rms
425 says that's not worth protecting against. */ 425 says that's not worth protecting against. */
426 if (!NILP (Ffboundp (Qucs_set_table_for_input))) 426 if (!NILP (Ffboundp (Qucs_set_table_for_input)))
@@ -792,9 +792,8 @@ DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buff
792If there is no live buffer named NAME, then return NAME. 792If there is no live buffer named NAME, then return NAME.
793Otherwise modify name by appending `<NUMBER>', incrementing NUMBER 793Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
794\(starting at 2) until an unused name is found, and then return that name. 794\(starting at 2) until an unused name is found, and then return that name.
795Optional second argument IGNORE specifies a name that is okay to use 795Optional second argument IGNORE specifies a name that is okay to use (if
796\(if it is in the sequence to be tried) 796it is in the sequence to be tried) even if a buffer with that name exists. */)
797even if a buffer with that name exists. */)
798 (name, ignore) 797 (name, ignore)
799 register Lisp_Object name, ignore; 798 register Lisp_Object name, ignore;
800{ 799{
@@ -1133,8 +1132,8 @@ state of the current buffer. Use with care. */)
1133DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick, 1132DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
1134 0, 1, 0, 1133 0, 1, 0,
1135 doc: /* Return BUFFER's tick counter, incremented for each change in text. 1134 doc: /* Return BUFFER's tick counter, incremented for each change in text.
1136Each buffer has a tick counter which is incremented each time the text in 1135Each buffer has a tick counter which is incremented each time the
1137that buffer is changed. It wraps around occasionally. 1136text in that buffer is changed. It wraps around occasionally.
1138No argument or nil as argument means use current buffer as BUFFER. */) 1137No argument or nil as argument means use current buffer as BUFFER. */)
1139 (buffer) 1138 (buffer)
1140 register Lisp_Object buffer; 1139 register Lisp_Object buffer;