summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2004-10-28 10:29:50 +0000
committerJohn Paul Wallington <jpw@pobox.com>2004-10-28 10:29:50 +0000
commit8a9cdb8db471a685a344e1b836fa9ab3dee2734f (patch)
tree5247819cb13fa4da9e9900a3ef57cb8eae2263d3 /lisp/files.el
parent02c9f5cd8af92935fa083a2f604be8f7edab03d0 (diff)
downloademacs-8a9cdb8db471a685a344e1b836fa9ab3dee2734f.tar.gz
(set-auto-mode): Call `throw' correctly.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 83955d26fcc..a4f846fbdee 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1896,7 +1896,7 @@ only set the major mode, if that would change it."
(message "Ignoring unknown mode `%s'" mode)
(setq done t)
(or (set-auto-mode-0 mode)
- (throw 'nop)))))
+ (throw 'nop nil)))))
;; If we didn't, look for an interpreter specified in the first line.
;; As a special case, allow for things like "#!/bin/env perl", which
;; finds the interpreter anywhere in $PATH.