diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc-cvs.el | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d43bbe29bf..aec62a08105 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and | ||
| 4 | inhibit-modification-hooks. | ||
| 5 | |||
| 3 | * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo. | 6 | * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo. |
| 4 | (calendar-bahai-print-date, calendar-bahai-goto-date) | 7 | (calendar-bahai-print-date, calendar-bahai-goto-date) |
| 5 | (diary-bahai-list-entries, diary-bahai-insert-entry): | 8 | (diary-bahai-list-entries, diary-bahai-insert-entry): |
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index f90f698275e..0a17388ae34 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el | |||
| @@ -590,7 +590,8 @@ encoded as fractional days." | |||
| 590 | systime, or nil if there is none." | 590 | systime, or nil if there is none." |
| 591 | (let* ((bol (point)) | 591 | (let* ((bol (point)) |
| 592 | (cache (get-text-property bol 'vc-cvs-annotate-time)) | 592 | (cache (get-text-property bol 'vc-cvs-annotate-time)) |
| 593 | buffer-read-only) | 593 | (inhibit-read-only t) |
| 594 | (inhibit-modification-hooks t)) | ||
| 594 | (cond | 595 | (cond |
| 595 | (cache) | 596 | (cache) |
| 596 | ((looking-at | 597 | ((looking-at |