emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/callint.c,v


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/src/callint.c,v
Date: Sun, 16 Mar 2008 17:45:52 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juri Linkov <jurta>     08/03/16 17:45:52

Index: callint.c
===================================================================
RCS file: /sources/emacs/emacs/src/callint.c,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -b -r1.161 -r1.162
--- callint.c   19 Feb 2008 04:03:01 -0000      1.161
+++ callint.c   16 Mar 2008 17:45:52 -0000      1.162
@@ -513,16 +513,35 @@
          break;
 
        case 'b':               /* Name of existing buffer */
-         args[i] = Fcurrent_buffer ();
-         if (EQ (selected_window, minibuf_window))
-           args[i] = Fother_buffer (args[i], Qnil, Qnil);
-         args[i] = Fread_buffer (callint_message, args[i], Qt);
-         break;
-
        case 'B':               /* Name of buffer, possibly nonexistent */
-         args[i] = Fread_buffer (callint_message,
-                                 Fother_buffer (Fcurrent_buffer (), Qnil, 
Qnil),
-                                 Qnil);
+         {
+           Lisp_Object tema, temb, temc;
+           int skip_current = 1;
+
+           if (*tem == 'b' && !EQ (selected_window, minibuf_window))
+             skip_current = 0;
+
+           /* Get a list of buffer names (except the current buffer and
+              internal buffers), and use this list for default values.  */
+           tema = Qnil;
+           temc = Fcurrent_buffer ();
+           teml = Fbuffer_list (selected_frame);
+           for (; CONSP (teml); teml = XCDR (teml))
+             {
+               temb = XCAR (teml);
+               if (skip_current && EQ (temb, temc))
+                 continue;
+               if (NILP (temb))
+                 continue;
+               if (NILP (XBUFFER (temb)->name))
+                 continue;
+               if (SREF (XBUFFER (temb)->name, 0) == ' ')
+                 continue;
+               tema = Fcons (XBUFFER (temb)->name, tema);
+             }
+           args[i] = Fread_buffer (callint_message, Fnreverse (tema),
+                                   *tem == 'b' ? Qt : Qnil);
+         }
          break;
 
         case 'c':              /* Character */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]