diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-12-21 10:36:48 +0800 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-12-21 10:36:48 +0800 |
commit | 6bfa51ba88183f82128a5d06e86e640c27b4707f (patch) | |
tree | c397abcb1b2567ac359d81b0dc8a5fca303c7c8d /lisp/wid-edit.el | |
parent | 9d9cfd53c830eec3052c30a8f1c13b12743d5c89 (diff) | |
download | emacs-6bfa51ba88183f82128a5d06e86e640c27b4707f.tar.gz |
Revert bogus 2010-10-24 change to widget-image-find.
* lisp/wid-edit.el (widget-image-find): Remove bogus :ascent spec from
image spec (Bug#7480).
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 9c7de61d7cd..5b6bc97db2c 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -637,8 +637,8 @@ extension (xpm, xbm, gif, jpg, or png) located in specs) (dolist (elt widget-image-conversion) (dolist (ext (cdr elt)) - (push (list :type (car elt) :file (concat image ext) - :ascent 'center) specs))) + (push (list :type (car elt) :file (concat image ext)) + specs))) (find-image (nreverse specs)))) (t ;; Oh well. |