mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-30 08:09:04 +00:00
(skeleton-internal-1): Use integerp and stringp
instead of char-or-string-p to catch -1.
This commit is contained in:
parent
8d25d881a0
commit
db08e41d23
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user