Function: math-parse-date-word
math-parse-date-word is a byte-compiled function defined in
calc-forms.el.gz.
Signature
(math-parse-date-word NAMES &optional FRONT)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-forms.el.gz
(defun math-parse-date-word (names &optional front)
(let ((n 1))
(while (and names (not (string-match (if (equal (car names) "Sep")
"Sept?"
(regexp-quote (car names)))
math-pd-str)))
(setq names (cdr names)
n (1+ n)))
(and names
(or (not front) (= (match-beginning 0) 0))
(progn
(setq math-pd-str (concat (substring math-pd-str 0 (match-beginning 0))
(if front "" " ")
(substring math-pd-str (match-end 0))))
n))))