emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/iswitchb.el,v


From: Stephen Eglen
Subject: [Emacs-diffs] Changes to emacs/lisp/iswitchb.el,v
Date: Tue, 22 Jul 2008 08:46:21 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Stephen Eglen <stephen> 08/07/22 08:46:20

Index: iswitchb.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/iswitchb.el,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -b -r1.77 -r1.78
--- iswitchb.el 27 Jun 2008 07:34:46 -0000      1.77
+++ iswitchb.el 22 Jul 2008 08:46:20 -0000      1.78
@@ -368,6 +368,11 @@
   :type 'hook
   :group 'iswitchb)
 
+(defcustom iswitchb-delim ","
+  "Delimiter to put between buffer names when displaying results."
+  :type 'string
+  :group 'iswitchb)
+
 (defvar iswitchb-all-frames 'visible
   "*Argument to pass to `walk-windows' when finding visible buffers.
 See documentation of `walk-windows' for useful values.")
@@ -1340,7 +1345,7 @@
                  most-is-exact
                  (alternatives
                   (mapconcat (if most 'iswitchb-output-completion
-                               'identity) comps ",")))
+                               'identity) comps iswitchb-delim)))
 
             (concat
 
@@ -1363,7 +1368,7 @@
              ;; list all alternatives
              open-bracket-prospects
              (if most-is-exact
-                 (concat "," alternatives)
+                 (concat iswitchb-delim alternatives)
                alternatives)
              close-bracket-prospects))))))
 




reply via email to

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