diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-24 16:43:03 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-24 16:43:03 +0000 |
commit | fd8e7a802c77d15b147b9e20592270db34778728 (patch) | |
tree | 03c31f48f1a2b0f72ef1c3d4af4078ef782ba176 /lisp/image.el | |
parent | f12126f8d1b861df60f070b5ad5a531510848ddb (diff) | |
download | emacs-fd8e7a802c77d15b147b9e20592270db34778728.tar.gz |
(defimage): Add `doc-string' declaration.
Diffstat (limited to 'lisp/image.el')
-rw-r--r-- | lisp/image.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index d9120b9bd32..87102dd34e4 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -430,10 +430,11 @@ Example: (defimage test-image ((:type xpm :file \"~/test1.xpm\") (:type xbm :file \"~/test1.xbm\")))" + (declare (doc-string 3)) `(defvar ,symbol (find-image ',specs) ,doc)) (provide 'image) -;;; arch-tag: 8e76a07b-eb48-4f3e-a7a0-1a7ba9f096b3 +;; arch-tag: 8e76a07b-eb48-4f3e-a7a0-1a7ba9f096b3 ;;; image.el ends here |