Go back to grave quoting in Gnus
* lisp/gnus/auth-source.el (auth-source-netrc-parse-entries): * lisp/gnus/gnus-agent.el (gnus-agent-check-overview-buffer) (gnus-agent-fetch-headers): * lisp/gnus/gnus-int.el (gnus-start-news-server): * lisp/gnus/gnus-registry.el: (gnus-registry--split-fancy-with-parent-internal) (gnus-registry-post-process-groups): * lisp/gnus/gnus-score.el (gnus-summary-increase-score): * lisp/gnus/gnus-start.el (gnus-convert-old-newsrc): * lisp/gnus/gnus-topic.el (gnus-topic-rename): * lisp/gnus/legacy-gnus-agent.el (gnus-agent-unlist-expire-days): * lisp/gnus/spam.el (spam-check-blackholes): Stick with grave quoting in diagnostics strings. This is more portable to older Emacs, desirable for Gnus.
This commit is contained in:
parent
bcfe2e0ed5
commit
27b2cff245
9 changed files with 17 additions and 17 deletions
|
|
@ -1097,7 +1097,7 @@ Note that the MAX parameter is used so we can exit the parse early."
|
|||
(if (equal item2 "machine")
|
||||
(progn
|
||||
(gnus-error 1
|
||||
"%s: Unexpected ‘machine’ token at line %d"
|
||||
"%s: Unexpected `machine' token at line %d"
|
||||
"auth-source-netrc-parse-entries"
|
||||
(auth-source-current-line))
|
||||
(forward-line 1))
|
||||
|
|
|
|||
|
|
@ -1721,7 +1721,7 @@ and that there are no duplicates."
|
|||
(or backed-up
|
||||
(setq backed-up (gnus-agent-backup-overview-buffer)))
|
||||
(gnus-message 1
|
||||
"Overview buffer contains garbage ‘%s’."
|
||||
"Overview buffer contains garbage `%s'."
|
||||
(buffer-substring
|
||||
p (point-at-eol))))
|
||||
((= cur prev-num)
|
||||
|
|
@ -1901,7 +1901,7 @@ article numbers will be returned."
|
|||
|
||||
(when articles
|
||||
(gnus-message
|
||||
10 "gnus-agent-fetch-headers: undownloaded articles are ‘%s’"
|
||||
10 "gnus-agent-fetch-headers: undownloaded articles are `%s'"
|
||||
(gnus-compress-sequence articles t)))
|
||||
|
||||
(with-current-buffer nntp-server-buffer
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ If CONFIRM is non-nil, the user will be asked for an NNTP server."
|
|||
gnus-batch-mode
|
||||
(gnus-y-or-n-p
|
||||
(gnus-format-message
|
||||
"%s (%s) open error: ‘%s’. Continue? "
|
||||
"%s (%s) open error: `%s'. Continue? "
|
||||
(car gnus-select-method) (cadr gnus-select-method)
|
||||
(gnus-status-message gnus-select-method)))
|
||||
(gnus-error 1 "Couldn't open server on %s"
|
||||
|
|
|
|||
|
|
@ -558,7 +558,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
|
|||
do (gnus-message
|
||||
;; warn more if gnus-registry-track-extra
|
||||
(if gnus-registry-track-extra 7 9)
|
||||
"%s (extra tracking) traced subject ‘%s’ to %s"
|
||||
"%s (extra tracking) traced subject `%s' to %s"
|
||||
log-agent subject group)
|
||||
and collect group))
|
||||
;; filter the found groups and return them
|
||||
|
|
@ -585,7 +585,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
|
|||
do (gnus-message
|
||||
;; warn more if gnus-registry-track-extra
|
||||
(if gnus-registry-track-extra 7 9)
|
||||
"%s (extra tracking) traced sender ‘%s’ to %s"
|
||||
"%s (extra tracking) traced sender `%s' to %s"
|
||||
log-agent sender group)
|
||||
and collect group)))
|
||||
|
||||
|
|
@ -615,7 +615,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
|
|||
do (gnus-message
|
||||
;; warn more if gnus-registry-track-extra
|
||||
(if gnus-registry-track-extra 7 9)
|
||||
"%s (extra tracking) traced recipient ‘%s’ to %s"
|
||||
"%s (extra tracking) traced recipient `%s' to %s"
|
||||
log-agent recp group)
|
||||
and collect group)))))
|
||||
|
||||
|
|
@ -712,12 +712,12 @@ possible. Uses `gnus-registry-split-strategy'."
|
|||
((null out)
|
||||
(gnus-message
|
||||
5
|
||||
"%s: no matches for %s ‘%s’."
|
||||
"%s: no matches for %s `%s'."
|
||||
log-agent mode key)
|
||||
nil)
|
||||
(t (gnus-message
|
||||
5
|
||||
"%s: too many extra matches (%s) for %s ‘%s’. Returning none."
|
||||
"%s: too many extra matches (%s) for %s `%s'. Returning none."
|
||||
log-agent out mode key)
|
||||
nil))))
|
||||
|
||||
|
|
|
|||
|
|
@ -626,7 +626,7 @@ current score file."
|
|||
(if mimic
|
||||
(progn
|
||||
(sit-for 1) (message "%c %c-" prefix hchar))
|
||||
(message "%s header ‘%s’ with match type (%s?): "
|
||||
(message "%s header `%s' with match type (%s?): "
|
||||
(if increase "Increase" "Lower")
|
||||
(nth 1 entry)
|
||||
(mapconcat (lambda (s) (char-to-string (car s)))
|
||||
|
|
|
|||
|
|
@ -2369,7 +2369,7 @@ If FORCE is non-nil, the .newsrc file is read."
|
|||
(while (let (c
|
||||
(cursor-in-echo-area t)
|
||||
(echo-keystrokes 0))
|
||||
(message "Convert gnus from version ‘%s’ to ‘%s’? (n/y/?)"
|
||||
(message "Convert gnus from version `%s' to `%s'? (n/y/?)"
|
||||
gnus-newsrc-file-version gnus-version)
|
||||
(setq c (read-char-exclusive))
|
||||
|
||||
|
|
@ -2390,7 +2390,7 @@ If FORCE is non-nil, the .newsrc file is read."
|
|||
|
||||
(funcall func convert-to)))
|
||||
(gnus-dribble-enter
|
||||
(gnus-format-message ";Converted gnus from version ‘%s’ to ‘%s’."
|
||||
(gnus-format-message ";Converted gnus from version `%s' to `%s'."
|
||||
gnus-newsrc-file-version gnus-version)))))))
|
||||
|
||||
(defun gnus-convert-mark-converter-prompt (converter no-prompt)
|
||||
|
|
|
|||
|
|
@ -1525,7 +1525,7 @@ If NON-RECURSIVE (which is the prefix) is t, don't unmark its subtopics."
|
|||
(read-string (format "Rename %s to: " topic) topic))))
|
||||
;; Check whether the new name exists.
|
||||
(when (gnus-topic-find-topology new-name)
|
||||
(error "Topic ‘%s’ already exists" new-name))
|
||||
(error "Topic `%s' already exists" new-name))
|
||||
;; "nil" is an invalid name, for reasons I'd rather not go
|
||||
;; into here. Trust me.
|
||||
(when (equal new-name "nil")
|
||||
|
|
|
|||
|
|
@ -149,17 +149,17 @@ converted to the compressed format."
|
|||
|
||||
(insert
|
||||
(gnus-format-message
|
||||
"\nIn order to use version ‘%s’ of gnus, you will need to set\n"
|
||||
"\nIn order to use version `%s' of gnus, you will need to set\n"
|
||||
converting-to))
|
||||
(insert "gnus-agent-expire-days to an integer. If you still wish to set different\n")
|
||||
(insert "expiration days to individual groups, you must instead set the\n")
|
||||
(insert (gnus-format-message
|
||||
"‘agent-days-until-old’ group and/or topic parameter.\n"))
|
||||
"`agent-days-until-old' group and/or topic parameter.\n"))
|
||||
(insert "\n")
|
||||
(insert "If you would like, gnus can iterate over every group comparing its name to the\n")
|
||||
(insert "regular expressions that you currently have in gnus-agent-expire-days. When\n")
|
||||
(insert (gnus-format-message
|
||||
"gnus finds a match, it will update that group's ‘agent-days-until-old’ group\n"))
|
||||
"gnus finds a match, it will update that group's `agent-days-until-old' group\n"))
|
||||
(insert "parameter to the value associated with the regular expression.\n")
|
||||
(insert "\n")
|
||||
(insert "Whether gnus assigns group parameters, or not, gnus will terminate with an\n")
|
||||
|
|
|
|||
|
|
@ -2054,7 +2054,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
|
|||
(if spam-use-dig
|
||||
(let ((query-result (query-dig query-string)))
|
||||
(when query-result
|
||||
(gnus-message 6 "(DIG): positive blackhole check ‘%s’"
|
||||
(gnus-message 6 "(DIG): positive blackhole check `%s'"
|
||||
query-result)
|
||||
(push (list ip server query-result)
|
||||
matches)))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue