From 1e8eecea4be7cd99c0f194c9249495d60dfc584b Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 28 Aug 2009 18:35:25 +0000 Subject: * arc-mode.el (archive-mode): * emacs-lisp/re-builder.el (re-builder-unload-function): Protect against the default value of `major-mode' being nil. --- lisp/arc-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/arc-mode.el') diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 6e65d64bb81..a91e9aebe3b 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el @@ -638,7 +638,7 @@ archive. ;; mode on and off. You can corrupt things that way. (if (zerop (buffer-size)) ;; At present we cannot create archives from scratch - (funcall (default-value 'major-mode)) + (funcall (or (default-value 'major-mode) 'fundamental-mode)) (if (and (not force) archive-files) nil (let* ((type (archive-find-type)) (typename (capitalize (symbol-name type)))) -- cgit v1.2.3