emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el,v
Date: Mon, 20 Oct 2008 17:29:32 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Andreas Schwab <schwab> 08/10/20 17:29:32

Index: subr.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/subr.el,v
retrieving revision 1.611
retrieving revision 1.612
diff -u -b -r1.611 -r1.612
--- subr.el     20 Oct 2008 16:14:06 -0000      1.611
+++ subr.el     20 Oct 2008 17:29:31 -0000      1.612
@@ -2922,7 +2922,7 @@
   (split-string-and-unquote (combine-and-quote-strings strs)) == strs
 The SEPARATOR regexp defaults to \"\\s-+\"."
   (let ((sep (or separator "\\s-+"))
-       (i (string-match "[\"]" string)))
+       (i (string-match "\"" string)))
     (if (null i)
        (split-string string sep t)     ; no quoting:  easy
       (append (unless (eq i 0) (split-string (substring string 0 i) sep t))




reply via email to

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