diff options
| author | Richard M. Stallman | 1994-08-02 02:32:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-02 02:32:26 +0000 |
| commit | 37fdc96f78ce8927a6f7d57b2da148d8b0b240f4 (patch) | |
| tree | 224ed9cbd9ccebaccbd5b0884a5bd37b3deec257 | |
| parent | 29e6129ecb270e846025ff25f350ea38b1d08a51 (diff) | |
| download | emacs-37fdc96f78ce8927a6f7d57b2da148d8b0b240f4.tar.gz emacs-37fdc96f78ce8927a6f7d57b2da148d8b0b240f4.zip | |
(rmail-mode-map): Fix the Get New Mail entry.
Add `...' where appropriate.
| -rw-r--r-- | lisp/mail/rmail.el | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 70de146642b..4d1a3471e67 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -405,37 +405,37 @@ Note: it means the file has no messages in it.\n\^_"))) | |||
| 405 | (cons "Classify" (make-sparse-keymap "Classify"))) | 405 | (cons "Classify" (make-sparse-keymap "Classify"))) |
| 406 | 406 | ||
| 407 | (define-key rmail-mode-map [menu-bar classify input-menu] | 407 | (define-key rmail-mode-map [menu-bar classify input-menu] |
| 408 | '("Input Rmail file (menu)" . rmail-input-menu)) | 408 | '("Input Rmail file (menu)..." . rmail-input-menu)) |
| 409 | 409 | ||
| 410 | (define-key rmail-mode-map [menu-bar classify output-menu] | 410 | (define-key rmail-mode-map [menu-bar classify output-menu] |
| 411 | '("Output (Rmail menu)" . rmail-output-menu)) | 411 | '("Output (Rmail menu)..." . rmail-output-menu)) |
| 412 | 412 | ||
| 413 | (define-key rmail-mode-map [menu-bar classify output-inbox] | 413 | (define-key rmail-mode-map [menu-bar classify output-inbox] |
| 414 | '("Output (inbox)" . rmail-output)) | 414 | '("Output (inbox)..." . rmail-output)) |
| 415 | 415 | ||
| 416 | (define-key rmail-mode-map [menu-bar classify output] | 416 | (define-key rmail-mode-map [menu-bar classify output] |
| 417 | '("Output (Rmail)" . rmail-output-to-rmail-file)) | 417 | '("Output (Rmail)..." . rmail-output-to-rmail-file)) |
| 418 | 418 | ||
| 419 | (define-key rmail-mode-map [menu-bar classify kill-label] | 419 | (define-key rmail-mode-map [menu-bar classify kill-label] |
| 420 | '("Kill Label" . rmail-kill-label)) | 420 | '("Kill Label..." . rmail-kill-label)) |
| 421 | 421 | ||
| 422 | (define-key rmail-mode-map [menu-bar classify add-label] | 422 | (define-key rmail-mode-map [menu-bar classify add-label] |
| 423 | '("Add Label" . rmail-add-label)) | 423 | '("Add Label..." . rmail-add-label)) |
| 424 | 424 | ||
| 425 | (define-key rmail-mode-map [menu-bar summary] | 425 | (define-key rmail-mode-map [menu-bar summary] |
| 426 | (cons "Summary" (make-sparse-keymap "Summary"))) | 426 | (cons "Summary" (make-sparse-keymap "Summary"))) |
| 427 | 427 | ||
| 428 | (define-key rmail-mode-map [menu-bar summary labels] | 428 | (define-key rmail-mode-map [menu-bar summary labels] |
| 429 | '("By Labels" . rmail-summary-by-labels)) | 429 | '("By Labels..." . rmail-summary-by-labels)) |
| 430 | 430 | ||
| 431 | (define-key rmail-mode-map [menu-bar summary recipients] | 431 | (define-key rmail-mode-map [menu-bar summary recipients] |
| 432 | '("By Recipients" . rmail-summary-by-recipients)) | 432 | '("By Recipients..." . rmail-summary-by-recipients)) |
| 433 | 433 | ||
| 434 | (define-key rmail-mode-map [menu-bar summary topic] | 434 | (define-key rmail-mode-map [menu-bar summary topic] |
| 435 | '("By Topic" . rmail-summary-by-topic)) | 435 | '("By Topic..." . rmail-summary-by-topic)) |
| 436 | 436 | ||
| 437 | (define-key rmail-mode-map [menu-bar summary regexp] | 437 | (define-key rmail-mode-map [menu-bar summary regexp] |
| 438 | '("By Regexp" . rmail-summary-by-regexp)) | 438 | '("By Regexp..." . rmail-summary-by-regexp)) |
| 439 | 439 | ||
| 440 | (define-key rmail-mode-map [menu-bar summary all] | 440 | (define-key rmail-mode-map [menu-bar summary all] |
| 441 | '("All" . rmail-summary)) | 441 | '("All" . rmail-summary)) |
| @@ -453,7 +453,7 @@ Note: it means the file has no messages in it.\n\^_"))) | |||
| 453 | '("Continue" . rmail-continue)) | 453 | '("Continue" . rmail-continue)) |
| 454 | 454 | ||
| 455 | (define-key rmail-mode-map [menu-bar mail resend] | 455 | (define-key rmail-mode-map [menu-bar mail resend] |
| 456 | '("Re-send" . rmail-resend)) | 456 | '("Re-send..." . rmail-resend)) |
| 457 | 457 | ||
| 458 | (define-key rmail-mode-map [menu-bar mail forward] | 458 | (define-key rmail-mode-map [menu-bar mail forward] |
| 459 | '("Forward" . rmail-forward)) | 459 | '("Forward" . rmail-forward)) |
| @@ -486,10 +486,10 @@ Note: it means the file has no messages in it.\n\^_"))) | |||
| 486 | (cons "Move" (make-sparse-keymap "Move"))) | 486 | (cons "Move" (make-sparse-keymap "Move"))) |
| 487 | 487 | ||
| 488 | (define-key rmail-mode-map [menu-bar move search-back] | 488 | (define-key rmail-mode-map [menu-bar move search-back] |
| 489 | '("Search Back" . rmail-search-backward)) | 489 | '("Search Back..." . rmail-search-backward)) |
| 490 | 490 | ||
| 491 | (define-key rmail-mode-map [menu-bar move search] | 491 | (define-key rmail-mode-map [menu-bar move search] |
| 492 | '("Search" . rmail-search)) | 492 | '("Search..." . rmail-search)) |
| 493 | 493 | ||
| 494 | (define-key rmail-mode-map [menu-bar move previous] | 494 | (define-key rmail-mode-map [menu-bar move previous] |
| 495 | '("Previous Nondeleted" . rmail-previous-undeleted-message)) | 495 | '("Previous Nondeleted" . rmail-previous-undeleted-message)) |