[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r106885: * dired.el (dired-build-subd
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r106885: * dired.el (dired-build-subdir-alist): Use string-match-p in previous change. |
Date: |
Tue, 17 Jan 2012 19:10:56 -0500 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 106885
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2012-01-17 19:10:56 -0500
message:
* dired.el (dired-build-subdir-alist): Use string-match-p in previous change.
modified:
lisp/dired.el
=== modified file 'lisp/dired.el'
--- a/lisp/dired.el 2012-01-18 00:08:05 +0000
+++ b/lisp/dired.el 2012-01-18 00:10:56 +0000
@@ -2559,7 +2559,7 @@
;; Undo any escaping of newlines and \ by dired-insert-directory.
;; Convert "n" preceded by odd number of \ to newline, and \\ to \.
(when (and (dired-switches-escape-p switches)
- (string-match "\\\\" new-dir-name))
+ (string-match-p "\\\\" new-dir-name))
(let (temp res)
(mapc (lambda (char)
(cond ((equal char ?\\)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r106885: * dired.el (dired-build-subdir-alist): Use string-match-p in previous change.,
Glenn Morris <=