diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/skeleton.el | 2 |
1 files changed, 1 insertions, 1 deletions
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."))) | |||
| 355 | 355 | ||
| 356 | (defun skeleton-internal-1 (element &optional literal recursive) | 356 | (defun skeleton-internal-1 (element &optional literal recursive) |
| 357 | (cond | 357 | (cond |
| 358 | ((char-or-string-p element) | 358 | ((or (integerp element) (stringp element)) |
| 359 | (if (and (integerp element) ; -num | 359 | (if (and (integerp element) ; -num |
| 360 | (< element 0)) | 360 | (< element 0)) |
| 361 | (if skeleton-untabify | 361 | (if skeleton-untabify |