diff src/buffer.c @ 51318:0b5248964d32

Comment.
author Dave Love <fx@gnu.org>
date Thu, 29 May 2003 18:36:16 +0000
parents b9ed0644abff
children 61ea5c492ffb
line wrap: on
line diff
--- a/src/buffer.c	Thu May 29 18:18:10 2003 +0000
+++ b/src/buffer.c	Thu May 29 18:36:16 2003 +0000
@@ -420,10 +420,11 @@
   XSETBUFFER (buf, b);
   Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
 
-  /* Fixme:  Protect against errors, which would trigger infinite
-     regress?  */
+  /* An error in calling the function here (should someone redfine it)
+     can lead to infinite regress until you run out of stack.  rms
+     says that's not worth protecting against.  */
   if (!NILP (Ffboundp (Qucs_set_table_for_input)))
-    /* buff is on buffer-alist, so no gcpro */
+    /* buf is on buffer-alist, so no gcpro.  */
     call1 (Qucs_set_table_for_input, buf);
 
   return buf;