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:
parent
c024ac081d
commit
1e86875746
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue