emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r99413: Don't signal error on incorre


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99413: Don't signal error on incorrect dirtrack regexp (Bug#5476)
Date: Fri, 29 Jan 2010 14:08:09 -0500
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 99413
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2010-01-29 14:08:09 -0500
message:
  Don't signal error on incorrect dirtrack regexp (Bug#5476)
  
  * dirtrack.el (dirtrack): Warn instead of signalling error if the
  regexp is incorrect (Bug#5476).
modified:
  lisp/ChangeLog
  lisp/dirtrack.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-01-29 16:23:25 +0000
+++ b/lisp/ChangeLog    2010-01-29 19:08:09 +0000
@@ -1,3 +1,8 @@
+2010-01-29  Chong Yidong  <address@hidden>
+
+       * dirtrack.el (dirtrack): Warn instead of signalling error if the
+       regexp is incorrect (Bug#5476).
+
 2010-01-29  Michael Albinus  <address@hidden>
 
        * net/tramp.el (tramp-handle-insert-directory): Handle also

=== modified file 'lisp/dirtrack.el'
--- a/lisp/dirtrack.el  2010-01-13 08:35:10 +0000
+++ b/lisp/dirtrack.el  2010-01-29 19:08:09 +0000
@@ -270,7 +270,7 @@
                        (run-hooks 'dirtrack-directory-change-hook)
                        (dirtrack-debug-message
                         (format "Changing directory to %s" prompt-path)))
-                (error "Directory %s does not exist" prompt-path)))
+                (warn "Directory %s does not exist" prompt-path)))
             )))))
   input)
 


reply via email to

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