From: yamaoka Date: Tue, 17 Aug 1999 23:05:10 +0000 (+0000) Subject: Sync up with the latest semi-1_13 branch. X-Git-Tag: semi-pgpgpg_20~25 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9e39fd00110536bd69227c9645bba6c3a2a801a9;p=elisp%2Fsemi.git Sync up with the latest semi-1_13 branch. --- diff --git a/ChangeLog b/ChangeLog index 3eae94e..f546a44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 1999-08-17 Katsumi Yamaoka + * mime-view.el (mime-preview-original-major-mode): Modify the way + of checking for the end of the buffer. + +1999-08-17 Katsumi Yamaoka + * mime-view.el (mime-preview-original-major-mode): Don't use `get-text-property' at the end of the buffer. diff --git a/mime-view.el b/mime-view.el index 168a73d..964c687 100644 --- a/mime-view.el +++ b/mime-view.el @@ -131,9 +131,10 @@ mother-buffer." (mime-preview-original-major-mode recursive) ) (cdr (assq 'major-mode - (get-text-property (or point (if (eobp) - (1- (point-max)) - (point))) + (get-text-property (or point + (if (> (point) (buffer-size)) + (max (1- (point-max)) (point-min)) + (point))) 'mime-view-situation)))))