emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#60279: closed ([PATCH] Add `string-or-null-p', `char-or-string-p', `


From: GNU bug Tracking System
Subject: bug#60279: closed ([PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p')
Date: Sat, 24 Dec 2022 07:58:01 +0000

Your message dated Sat, 24 Dec 2022 09:57:27 +0200
with message-id <83k02h5j4o.fsf@gnu.org>
and subject line Re: bug#60279: [PATCH] Add `string-or-null-p', 
`char-or-string-p', `char-uppercase-p'
has caused the debbugs.gnu.org bug report #60279,
regarding [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p'
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
60279: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60279
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p' Date: Fri, 23 Dec 2022 23:50:39 +0800
---
 lisp/emacs-lisp/shortdoc.el | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 6704db3cc5..90f81d740f 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -263,6 +263,12 @@ string
    :eval (stringp "a")
    :eval (stringp 'a)
    :eval "(stringp ?a)")
+  (string-or-null-p
+   :eval (string-or-null-p "a")
+   :eval (string-or-null-p nil))
+  (char-or-string-p
+   :eval "(char-or-string-p ?a)"
+   :eval (char-or-string-p "a"))
   (string-empty-p
    :no-manual t
    :eval (string-empty-p ""))
@@ -300,6 +306,9 @@ string
    :eval (string-to-number "2.5e+03"))
   (number-to-string
    :eval (number-to-string 42))
+  (char-uppercase-p
+   :eval "(char-uppercase-p ?A)"
+   :eval "(char-uppercase-p ?a)")
   "Data About Strings"
   (length
    :eval (length "foo")
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#60279: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p' Date: Sat, 24 Dec 2022 09:57:27 +0200
> Cc: Xi Lu <lx@shellcodes.org>
> From: Xi Lu <lx@shellcodes.org>
> Date: Fri, 23 Dec 2022 23:50:39 +0800
> 
> ---
>  lisp/emacs-lisp/shortdoc.el | 9 +++++++++
>  1 file changed, 9 insertions(+)

Thanks, installed on the emacs-29 branch.


--- End Message ---

reply via email to

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