1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

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).
This commit is contained in:
Chong Yidong 2010-01-29 14:08:09 -05:00
parent c024ac081d
commit 1e86875746
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-01-29 Chong Yidong <cyd@stupidchicken.com>
* dirtrack.el (dirtrack): Warn instead of signalling error if the
regexp is incorrect (Bug#5476).
2010-01-29 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-handle-insert-directory): Handle also

View File

@ -270,7 +270,7 @@ function `dirtrack-debug-mode' to turn on debugging output."
(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)