diff options
| author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 21:13:59 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 21:13:59 +0200 |
| commit | c00ffe263d9ffeb4d2a5e13cc124c786152137db (patch) | |
| tree | 2a961c4b7be46d5b8e21a36d84f162380785b379 | |
| parent | 71178fbdc6a1124131dc3a760bde9d79d34ecec2 (diff) | |
| download | emacs-c00ffe263d9ffeb4d2a5e13cc124c786152137db.tar.gz | |
Fix comp-mvar doc string quoting
* lisp/emacs-lisp/comp.el (comp-mvar): Fix quoting of symbol in
doc string.
| -rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 83a81a1bad3..ff4abf3ef10 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -944,7 +944,7 @@ CFG is mutated by a pass.") :documentation "Unique id when in SSA form.") (slot nil :type (or fixnum symbol) :documentation "Slot number in the array if a number or - 'scratch' for scratch slot.")) + `scratch' for scratch slot.")) (defun comp-mvar-type-hint-match-p (mvar type-hint) "Match MVAR against TYPE-HINT. |
