aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-30 22:35:28 +0000
committerKarl Heuer1995-05-30 22:35:28 +0000
commit9f1250c56eb036052cdbe224fee1562e85a8a932 (patch)
treec9d14d69a2a7eb928b197d2e6eb9c4e2a63947cf
parent35b34f729f356ae2b4df985f9f58346c70346612 (diff)
downloademacs-9f1250c56eb036052cdbe224fee1562e85a8a932.tar.gz
emacs-9f1250c56eb036052cdbe224fee1562e85a8a932.zip
(tar-mode-map): Fix capitalization in menu bar.
-rw-r--r--lisp/tar-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el
index 3398b644e69..dfc555c97e9 100644
--- a/lisp/tar-mode.el
+++ b/lisp/tar-mode.el
@@ -543,7 +543,7 @@ is visible (and the real data of the buffer is hidden)."
543(define-key tar-mode-map [menu-bar operate copy] 543(define-key tar-mode-map [menu-bar operate copy]
544 '("Copy to..." . tar-copy)) 544 '("Copy to..." . tar-copy))
545(define-key tar-mode-map [menu-bar operate expunge] 545(define-key tar-mode-map [menu-bar operate expunge]
546 '("Expunge marked files" . tar-expunge)) 546 '("Expunge Marked Files" . tar-expunge))
547 547
548;; tar mode is suitable only for specially formatted data. 548;; tar mode is suitable only for specially formatted data.
549(put 'tar-mode 'mode-class 'special) 549(put 'tar-mode 'mode-class 'special)