emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/compat 2e77f11189 1/2: Fix warnings about fancy quotes


From: ELPA Syncer
Subject: [elpa] externals/compat 2e77f11189 1/2: Fix warnings about fancy quotes
Date: Sun, 29 May 2022 10:57:21 -0400 (EDT)

branch: externals/compat
commit 2e77f1118958a0c07aa3c2c4993b62a93b99fe44
Author: dr-scsi <59777257+dr-scsi@users.noreply.github.com>
Commit: Philip Kaludercic <philipk@posteo.net>

    Fix warnings about fancy quotes
    
    * compat-26.el (func-arity, assoc): Silence the compiler about
    fancy quotes with Emacs 29.
---
 compat-26.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compat-26.el b/compat-26.el
index c1d46ddfb3..0764f1e9ec 100644
--- a/compat-26.el
+++ b/compat-26.el
@@ -46,8 +46,8 @@
   "Return minimum and maximum number of args allowed for FUNC.
 FUNC must be a function of some kind.
 The returned value is a cons cell (MIN . MAX).  MIN is the minimum number
-of args.  MAX is the maximum number, or the symbol ‘many’, for a
-function with ‘&rest’ args, or ‘unevalled’ for a special form."
+of args.  MAX is the maximum number, or the symbol `many', for a
+function with `&rest' args, or `unevalled' for a special form."
   :realname compat--func-arity
   (cond
    ((or (null func) (and (symbolp func) (not (fboundp func))))
@@ -118,7 +118,7 @@ function with ‘&rest’ args, or ‘unevalled’ for a special 
form."
 (compat-defun assoc (key alist &optional testfn)
   "Handle the optional argument TESTFN.
 Equality is defined by the function TESTFN, defaulting to
-‘equal’.  TESTFN is called with 2 arguments: a car of an alist
+`equal'.  TESTFN is called with 2 arguments: a car of an alist
 element and KEY.  With no optional argument, the function behaves
 just like `assoc'."
   :prefix t



reply via email to

[Prev in Thread] Current Thread [Next in Thread]