aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-08-22 19:47:42 +0000
committerGlenn Morris2009-08-22 19:47:42 +0000
commit977955fab75bdc1b6d4fb9ff82861ea46802547e (patch)
tree73ab294b27b79bdb4726f60b1e80e8459cd66f98
parentb4deec2e852119c77df0803bb08f00f5d1637c28 (diff)
downloademacs-977955fab75bdc1b6d4fb9ff82861ea46802547e.tar.gz
emacs-977955fab75bdc1b6d4fb9ff82861ea46802547e.zip
(diary-mark-entries-1): Only mark all days of a given name if the
pattern is not more specific.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/calendar/diary-lib.el4
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ce2c1463b29..cbd9f90e11e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-08-22 Glenn Morris <rgm@gnu.org> 12009-08-22 Glenn Morris <rgm@gnu.org>
2 2
3 * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
4 given name if the pattern is not more specific.
5
3 * calendar/lunar.el (lunar-phase-names): New option. 6 * calendar/lunar.el (lunar-phase-names): New option.
4 (lunar-phase): Doc fix. 7 (lunar-phase): Doc fix.
5 (lunar-cycles-per-year): New constant. 8 (lunar-cycles-per-year): New constant.
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el
index 0081170d8ac..ac608517e0f 100644
--- a/lisp/calendar/diary-lib.el
+++ b/lisp/calendar/diary-lib.el
@@ -1246,7 +1246,9 @@ function that converts absolute dates to dates of the appropriate type. "
1246 (buffer-substring-no-properties 1246 (buffer-substring-no-properties
1247 (point) (line-end-position)) 1247 (point) (line-end-position))
1248 file-glob-attrs))) 1248 file-glob-attrs)))
1249 (if dd-name 1249 ;; Only mark all days of a given name if the pattern
1250 ;; contains no more specific elements.
1251 (if (and dd-name (not (or d-pos m-pos y-pos)))
1250 (calendar-mark-days-named 1252 (calendar-mark-days-named
1251 (cdr (assoc-string dd-name 1253 (cdr (assoc-string dd-name
1252 (calendar-make-alist 1254 (calendar-make-alist