all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#60279: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p'
@ 2022-12-23 15:50 Xi Lu
  2022-12-24  7:57 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Xi Lu @ 2022-12-23 15:50 UTC (permalink / raw)
  To: 60279; +Cc: Xi Lu

---
 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






^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#60279: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p'
  2022-12-23 15:50 bug#60279: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p' Xi Lu
@ 2022-12-24  7:57 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2022-12-24  7:57 UTC (permalink / raw)
  To: Xi Lu; +Cc: 60279-done

> 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.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-24  7:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-23 15:50 bug#60279: [PATCH] Add `string-or-null-p', `char-or-string-p', `char-uppercase-p' Xi Lu
2022-12-24  7:57 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.