diff options
| author | Joakim Verona | 2010-06-14 15:57:48 +0200 |
|---|---|---|
| committer | Joakim Verona | 2010-06-14 15:57:48 +0200 |
| commit | 4917006be4c461d6dfedc205ababadd5e15d5279 (patch) | |
| tree | 954bfcb30fc38796f17b6ab7053025b5970f4c6b /lisp | |
| parent | c05c21ed109720d66c834a0c5b21ea29416683a6 (diff) | |
| download | emacs-4917006be4c461d6dfedc205ababadd5e15d5279.tar.gz emacs-4917006be4c461d6dfedc205ababadd5e15d5279.zip | |
mostly cosmetic, moving { instances, changing indentation accordingly.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/image.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/image.el b/lisp/image.el index 96694d11363..fe6af0cefda 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -702,9 +702,9 @@ shall be displayed." | |||
| 702 | (defun imagemagick-register-types () | 702 | (defun imagemagick-register-types () |
| 703 | "Register file types that imagemagick is able to handle." | 703 | "Register file types that imagemagick is able to handle." |
| 704 | (let ((im-types (imagemagick-types))) | 704 | (let ((im-types (imagemagick-types))) |
| 705 | (dolist im-inhibit | 705 | (dolist (im-inhibit imagemagick-types-inhibit) |
| 706 | (setq im-types (remove im-inhibit im-types))) | 706 | (setq im-types (remove im-inhibit im-types))) |
| 707 | (dolist im-type im-types | 707 | (dolist (im-type im-types) |
| 708 | (let ((extension (downcase (symbol-name im-type)))) | 708 | (let ((extension (downcase (symbol-name im-type)))) |
| 709 | (push | 709 | (push |
| 710 | (cons (concat "\\." extension "\\'") 'image-mode) | 710 | (cons (concat "\\." extension "\\'") 'image-mode) |