branch: externals/relint commit b26b1958554af2e4b77a176aa2de0e6da5f201ca Author: Mattias EngdegÄrd <matti...@acm.org> Commit: Mattias EngdegÄrd <matti...@acm.org>
Fix quotes in doc strings, silencing Emacs 29 warnings --- relint.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relint.el b/relint.el index d2e2ca3e57..6ef986fdc5 100644 --- a/relint.el +++ b/relint.el @@ -502,7 +502,7 @@ alternatives.") alternatives. They may still require wrapping their function arguments.") (defun relint--rx-safe (rx) - "Return RX safe to translate; throw 'relint-eval 'no-value if not." + "Return RX safe to translate; throw `relint-eval' `no-value' if not." (cond ((atom rx) rx) ;; These cannot contain rx subforms. @@ -622,7 +622,7 @@ into something that can be called safely." (cl-loop repeat n for x in list collect x)))) (defun relint--eval (form) - "Evaluate a form. Throw 'relint-eval 'no-value if something could + "Evaluate a form. Throw `relint-eval' `no-value' if something could not be evaluated safely." (if (atom form) (cond