diff options
| author | Deepak Goel | 2005-09-18 12:37:20 +0000 |
|---|---|---|
| committer | Deepak Goel | 2005-09-18 12:37:20 +0000 |
| commit | 8381614263ceb53ebe900128ab0aefae0cf8e476 (patch) | |
| tree | f05c3c3f9ba218f2e3fff2d9e8ed49155fc7f49f | |
| parent | 8603cb4f3f6ecf1f4b4a0ef24b1e26c5e1075e73 (diff) | |
| download | emacs-8381614263ceb53ebe900128ab0aefae0cf8e476.tar.gz emacs-8381614263ceb53ebe900128ab0aefae0cf8e476.zip | |
Message format spec fixes (commit 6)
| -rw-r--r-- | lisp/mail/feedmail.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rmail-spam-filter.el | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 7c7265ac8c9..d8740c036f2 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el | |||
| @@ -1943,7 +1943,7 @@ mapped to mostly alphanumerics for safety." | |||
| 1943 | (file-exists-p a-s-file-name) | 1943 | (file-exists-p a-s-file-name) |
| 1944 | (delete-file a-s-file-name)))) | 1944 | (delete-file a-s-file-name)))) |
| 1945 | (if feedmail-queue-chatty | 1945 | (if feedmail-queue-chatty |
| 1946 | (progn (message (concat "FQM: Queued in " filename)) | 1946 | (progn (message "%s" (concat "FQM: Queued in " filename)) |
| 1947 | (sit-for feedmail-queue-chatty-sit-for))) | 1947 | (sit-for feedmail-queue-chatty-sit-for))) |
| 1948 | (if feedmail-queue-chatty | 1948 | (if feedmail-queue-chatty |
| 1949 | (progn | 1949 | (progn |
diff --git a/lisp/mail/rmail-spam-filter.el b/lisp/mail/rmail-spam-filter.el index 7be5146f722..525bcd4096b 100644 --- a/lisp/mail/rmail-spam-filter.el +++ b/lisp/mail/rmail-spam-filter.el | |||
| @@ -449,10 +449,10 @@ it from rmail file. Called for each new message retrieved by | |||
| 449 | (if rsf-autosave-newly-added-definitions | 449 | (if rsf-autosave-newly-added-definitions |
| 450 | (progn | 450 | (progn |
| 451 | (custom-save-all) | 451 | (custom-save-all) |
| 452 | (message (concat "added subject \n <<< \n" message-subject | 452 | (message "%s" (concat "added subject \n <<< \n" message-subject |
| 453 | " \n >>> \n to list of spam definitions. \n" | 453 | " \n >>> \n to list of spam definitions. \n" |
| 454 | "and saved the spam definitions to file."))) | 454 | "and saved the spam definitions to file."))) |
| 455 | (message (concat "added subject \n <<< \n" message-subject | 455 | (message "%s" (concat "added subject \n <<< \n" message-subject |
| 456 | " \n >>> \n to list of spam definitions. \n" | 456 | " \n >>> \n to list of spam definitions. \n" |
| 457 | "Don't forget to save the spam definitions to file using the spam | 457 | "Don't forget to save the spam definitions to file using the spam |
| 458 | menu")) | 458 | menu")) |
| @@ -478,10 +478,10 @@ it from rmail file. Called for each new message retrieved by | |||
| 478 | (if rsf-autosave-newly-added-definitions | 478 | (if rsf-autosave-newly-added-definitions |
| 479 | (progn | 479 | (progn |
| 480 | (custom-save-all) | 480 | (custom-save-all) |
| 481 | (message (concat "added sender \n <<< \n" message-sender | 481 | (message "%s" (concat "added sender \n <<< \n" message-sender |
| 482 | " \n >>> \n to list of spam definitions. \n" | 482 | " \n >>> \n to list of spam definitions. \n" |
| 483 | "and saved the spam definitions to file."))) | 483 | "and saved the spam definitions to file."))) |
| 484 | (message (concat "added sender \n <<< \n " message-sender | 484 | (message "%s" (concat "added sender \n <<< \n " message-sender |
| 485 | " \n >>> \n to list of spam definitions." | 485 | " \n >>> \n to list of spam definitions." |
| 486 | "Don't forget to save the spam definitions to file using the spam | 486 | "Don't forget to save the spam definitions to file using the spam |
| 487 | menu")) | 487 | menu")) |
| @@ -521,10 +521,10 @@ Added to spam definitions as a contents field." | |||
| 521 | (if rsf-autosave-newly-added-definitions | 521 | (if rsf-autosave-newly-added-definitions |
| 522 | (progn | 522 | (progn |
| 523 | (custom-save-all) | 523 | (custom-save-all) |
| 524 | (message (concat "added highlighted text \n <<< \n" region-to-spam-list | 524 | (message "%s" (concat "added highlighted text \n <<< \n" region-to-spam-list |
| 525 | " \n >>> \n to list of spam definitions. \n" | 525 | " \n >>> \n to list of spam definitions. \n" |
| 526 | "and saved the spam definitions to file."))) | 526 | "and saved the spam definitions to file."))) |
| 527 | (message (concat "added highlighted text \n <<< \n " region-to-spam-list | 527 | (message "%s" (concat "added highlighted text \n <<< \n " region-to-spam-list |
| 528 | " \n >>> \n to list of spam definitions." | 528 | " \n >>> \n to list of spam definitions." |
| 529 | "Don't forget to save the spam definitions to file using the | 529 | "Don't forget to save the spam definitions to file using the |
| 530 | spam menu")) | 530 | spam menu")) |