Skip to content

Commit 555f5f7

Browse files
committed
Fix a few more minor quoting problems.
1 parent c5fd4d3 commit 555f5f7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lisp/erc/erc-stamp.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Return the empty string if FORMAT is nil."
357357
ts)
358358
""))
359359

360-
;; This function is used to munge `buffer-invisibility-spec to an
360+
;; This function is used to munge `buffer-invisibility-spec' to an
361361
;; appropriate value. Currently, it only handles timestamps, thus its
362362
;; location. If you add other features which affect invisibility,
363363
;; please modify this function and move it to a more appropriate

lisp/gnus/nnmairix.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1459,7 +1459,7 @@ group."
14591459
(while (and allservers (not found))
14601460
(setq mairixserver (gnus-server-to-method (car (pop allservers))))
14611461
;; First we look if SERVER is the backend of current nnmairix server
1462-
(setq found (and (eq (cadr (assoc `nnmairix-backend mairixserver))
1462+
(setq found (and (eq (cadr (assoc 'nnmairix-backend mairixserver))
14631463
(car server))
14641464
(string= (cadr (assoc 'nnmairix-backend-server mairixserver))
14651465
(nth 1 server))))

lisp/obsolete/vip.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2250,7 +2250,7 @@ a token has type \(command, address, end-mark\) and value."
22502250
(forward-char 1)
22512251
(cond ((looking-at "'") (setq ex-token nil))
22522252
((looking-at "[a-z]") (setq ex-token (following-char)))
2253-
(t (error "%s" "Marks are ' and a-z" ?')))
2253+
(t (error "%s" "Marks are ' and a-z")))
22542254
(forward-char 1))
22552255
((looking-at "\n")
22562256
(setq ex-token-type "end-mark")

lisp/progmodes/compile.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ FMTS is a list of format specs for transforming the file name.
12521252
(unless file (setq file '("*unknown*")))
12531253
(let* ((file-struct (compilation-get-file-structure file fmts))
12541254
;; Get first already existing marker (if any has one, all have one).
1255-
;; Do this first, as the compilation-assq`s may create new nodes.
1255+
;; Do this first, as the compilation-assq's may create new nodes.
12561256
(marker-line ; a line structure
12571257
(cadr (compilation--file-struct->loc-tree file-struct)))
12581258
(marker

lisp/simple.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9065,7 +9065,7 @@ contains the list of implementations currently supported for this command."
90659065
(unless (string-equal val "")
90669066
(when (null ,varimp-sym)
90679067
(message
9068-
"Use C-u M-x %s RET`to select another implementation"
9068+
"Use `C-u M-x %s RET' to select another implementation"
90699069
,command-name)
90709070
(sit-for 3))
90719071
(customize-save-variable ',varimp-sym

lisp/textmodes/remember.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
;; out, in the long run? Perhaps its because the time we save
149149
;; electronically in one way, we're losing electronically in another;
150150
;; the tool should never dominate one's focus. As the mystic
151-
;; Faridu'd-Din `Attar wrote: "Be occupied as little as possible with
151+
;; Farīd ud-Dīn ʿAṭṭār wrote: "Be occupied as little as possible with
152152
;; things of the outer world but much with things of the inner world;
153153
;; then right action will overcome inaction."
154154
;;

0 commit comments

Comments
 (0)