From db08e41d23e62a2eb44f044ae050a6967b2937db Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 7 Sep 2007 02:14:55 +0000 Subject: [PATCH] (skeleton-internal-1): Use integerp and stringp instead of char-or-string-p to catch -1. --- lisp/skeleton.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/skeleton.el b/lisp/skeleton.el index 4425bb0389a..a49fbdcd954 100644 --- a/lisp/skeleton.el +++ b/lisp/skeleton.el @@ -355,7 +355,7 @@ automatically, and you are prompted to fill in the variable parts."))) (defun skeleton-internal-1 (element &optional literal recursive) (cond - ((char-or-string-p element) + ((or (integerp element) (stringp element)) (if (and (integerp element) ; -num (< element 0)) (if skeleton-untabify -- 2.39.5