diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-14 11:21:08 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-14 11:21:08 +0000 |
commit | 1cd7adc68ae35528a20418b76f13f2b84db827dd (patch) | |
tree | 72fa14e562d56aba99842bdd78f10522c60a9ea8 /lisp/arc-mode.el | |
parent | 07b1b9126d535f7ce7908a05cb4da8545ac1766e (diff) | |
download | emacs-1cd7adc68ae35528a20418b76f13f2b84db827dd.tar.gz |
Emacs lisp coding convention fixes.
Diffstat (limited to 'lisp/arc-mode.el')
-rw-r--r-- | lisp/arc-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index e814d4d40c3..3a0c2321232 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el @@ -692,7 +692,7 @@ archive. (string-match "\\.[aA][rR][cC]$" (or buffer-file-name (buffer-name)))) 'arc) - (t (error "Buffer format not recognized."))))) + (t (error "Buffer format not recognized"))))) ;; ------------------------------------------------------------------------- (defun archive-summarize (&optional shut-up) "Parse the contents of the archive file in the current buffer. @@ -1744,4 +1744,4 @@ This doesn't recover lost files, it just undoes changes in the buffer itself." (provide 'arc-mode) -;; arc-mode.el ends here. +;;; arc-mode.el ends here |