]> git.eshelyaron.com Git - emacs.git/commitdiff
(diary-entry-time): Downcase the am/pm letter.
authorRichard M. Stallman <rms@gnu.org>
Wed, 23 Jul 1997 19:07:34 +0000 (19:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 23 Jul 1997 19:07:34 +0000 (19:07 +0000)
lisp/calendar/diary-lib.el

index df469978c8919f58b1a50ab79fe2f974679a9b84..b658566eecafa9dc33634ad443f18c47bc5eeecb 100644 (file)
@@ -892,8 +892,7 @@ and XX:XXam or XX:XXpm."
          (+ (* 100 (% (string-to-int
                          (substring s (match-beginning 1) (match-end 1)))
                         12))
-            (if (string-equal "a"
-                              (substring s (match-beginning 2) (match-end 2)))
+            (if (equal ?a (downcase (aref s (match-beginning 2))))
                 0 1200)))
         ((string-match;; Hour and minute  XX:XXam or XX:XXpm
           "^[ \t]*\\([0-9]?[0-9]\\):\\([0-9][0-9]\\)\\([ap]\\)m\\>" s)
@@ -901,8 +900,7 @@ and XX:XXam or XX:XXpm."
                          (substring s (match-beginning 1) (match-end 1)))
                         12))
             (string-to-int (substring s (match-beginning 2) (match-end 2)))
-            (if (string-equal "a"
-                              (substring s (match-beginning 3) (match-end 3)))
+            (if (equal ?a (downcase (aref s (match-beginning 3))))
                 0 1200)))
         (t -9999)));; Unrecognizable