mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-05 07:01:11 -08:00
* lisp/ps-mule.el (ps-mule-plot-string): Don't inf-loop.
* lisp/image-mode.el (image-toggle-display-text) (image-toggle-display-image): Stay away from evil `intangible'. Fixes: debbugs:5108
This commit is contained in:
parent
08d355e3eb
commit
345083b2cb
3 changed files with 10 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
|
||||
* image-mode.el (image-toggle-display-text)
|
||||
(image-toggle-display-image): Stay away from evil `intangible'.
|
||||
|
||||
2011-09-19 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* replace.el (occur-revert-arguments): Make it permanent-local.
|
||||
|
|
|
|||
|
|
@ -465,7 +465,7 @@ Remove text properties that display the image."
|
|||
(buffer-undo-list t)
|
||||
(modified (buffer-modified-p)))
|
||||
(remove-list-of-text-properties (point-min) (point-max)
|
||||
'(display intangible read-nonsticky
|
||||
'(display read-nonsticky ;; intangible
|
||||
read-only front-sticky))
|
||||
(set-buffer-modified-p modified)
|
||||
(if (called-interactively-p 'any)
|
||||
|
|
@ -506,8 +506,8 @@ was inserted."
|
|||
(setq image (append image (image-transform-properties image)))
|
||||
(setq props
|
||||
`(display ,image
|
||||
intangible ,image
|
||||
rear-nonsticky (display intangible)
|
||||
;; intangible ,image
|
||||
rear-nonsticky (display) ;; intangible
|
||||
read-only t front-sticky (read-only)))
|
||||
|
||||
(let ((buffer-file-truename nil)) ; avoid changing dir mtime by lock_file
|
||||
|
|
|
|||
|
|
@ -659,7 +659,7 @@ the sequence."
|
|||
width)
|
||||
(goto-char from)
|
||||
(while (not endpos)
|
||||
(cond ((= (point) stop)
|
||||
(cond ((>= (point) stop)
|
||||
(if (= stop to)
|
||||
(setq endpos stop)
|
||||
(when (< from stop)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue