diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-01-29 14:08:09 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-01-29 14:08:09 -0500 |
commit | 1e86875746f1890ee62c8f1460ff905e50750aff (patch) | |
tree | 45df91585f5bf318fc17641ed69b79e495a3409e /lisp/dirtrack.el | |
parent | c024ac081d2f128ab65b325a6db8bdc12dc081db (diff) | |
download | emacs-1e86875746f1890ee62c8f1460ff905e50750aff.tar.gz |
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).
Diffstat (limited to 'lisp/dirtrack.el')
-rw-r--r-- | lisp/dirtrack.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dirtrack.el b/lisp/dirtrack.el index 41ffc0e3195..c209a2a6eb9 100644 --- a/lisp/dirtrack.el +++ b/lisp/dirtrack.el @@ -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) |