diff options
| author | Richard M. Stallman | 1998-07-25 05:59:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-07-25 05:59:11 +0000 |
| commit | 6a271152e3930466f70c666d3f05ccbbabb0b362 (patch) | |
| tree | 92bafd1779d8609bea807628b9735a9097a7b894 | |
| parent | 558b0c8617bb69791486f0661b074e23f81b659b (diff) | |
| download | emacs-6a271152e3930466f70c666d3f05ccbbabb0b362.tar.gz emacs-6a271152e3930466f70c666d3f05ccbbabb0b362.zip | |
(cal-tex-latexify-list): Ignore specifer in diary entry.
| -rw-r--r-- | lisp/calendar/cal-tex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index 265bcd64cec..2976f66eb21 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el | |||
| @@ -1444,9 +1444,9 @@ Use double backslash as a separator unless optional SEPARATOR is given." | |||
| 1444 | (while p | 1444 | (while p |
| 1445 | (and (car (car p)) | 1445 | (and (car (car p)) |
| 1446 | (calendar-date-equal date (car (car p))) | 1446 | (calendar-date-equal date (car (car p))) |
| 1447 | (setq result (append result (cdr (car p))))) | 1447 | (setq result (cons (car (cdr (car p))) result))) |
| 1448 | (setq p (cdr p))) | 1448 | (setq p (cdr p))) |
| 1449 | result) | 1449 | (reverse result)) |
| 1450 | (if separator separator "\\\\"))) | 1450 | (if separator separator "\\\\"))) |
| 1451 | 1451 | ||
| 1452 | (defun cal-tex-previous-month (date) | 1452 | (defun cal-tex-previous-month (date) |