summaryrefslogtreecommitdiff
path: root/lisp/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/parse-time.el13
1 files changed, 5 insertions, 8 deletions
diff --git a/lisp/calendar/parse-time.el b/lisp/calendar/parse-time.el
index 4086d236557..6ba26a4a00d 100644
--- a/lisp/calendar/parse-time.el
+++ b/lisp/calendar/parse-time.el
@@ -41,14 +41,11 @@
(defvar parse-time-val)
(defsubst parse-time-string-chars (char)
- (save-match-data
- (let (case-fold-search str)
- (cond ((eq char ?+) 1)
- ((eq char ?-) -1)
- ((eq char ?:) ?d)
- ((string-match "[[:upper:]]" (setq str (string char))) ?A)
- ((string-match "[[:lower:]]" str) ?a)
- ((string-match "[[:digit:]]" str) ?0)))))
+ (cond ((<= ?a char ?z) ?a)
+ ((<= ?0 char ?9) ?0)
+ ((eq char ?+) 1)
+ ((eq char ?-) -1)
+ ((eq char ?:) ?d)))
(defun parse-time-tokenize (string)
"Tokenize STRING into substrings."