Mercurial > emacs
comparison lisp/image-file.el @ 100171:d42aff5ca541
* align.el:
* allout.el:
* apropos.el:
* arc-mode.el:
* autoinsert.el:
* avoid.el:
* battery.el:
* bookmark.el:
* buff-menu.el:
* calculator.el:
* chistory.el:
* cmuscheme.el:
* comint.el:
* compare-w.el:
* dabbrev.el:
* delim-col.el:
* desktop.el:
* diff-mode.el:
* diff.el:
* dired-aux.el:
* dired-x.el:
* dired.el:
* dos-vars.el:
* ediff-diff.el:
* ediff-help.el:
* ediff-init.el:
* ediff-merg.el:
* ediff-mult.el:
* ediff-ptch.el:
* ediff-vers.el:
* ediff-wind.el:
* ediff.el:
* emerge.el:
* facemenu.el:
* faces.el:
* ffap.el:
* filecache.el:
* find-dired.el:
* font-core.el:
* font-lock.el:
* forms.el:
* fringe.el:
* help-at-pt.el:
* hippie-exp.el:
* ido.el:
* image-file.el:
* imenu.el:
* indent.el:
* info.el:
* isearchb.el:
* iswitchb.el:
* jit-lock.el:
* jka-compr.el:
* log-edit.el:
* lpr.el:
* ls-lisp.el:
* man.el:
* menu-bar.el:
* midnight.el:
* mouse-sel.el:
* mouse.el:
* msb.el:
* outline.el:
* paren.el:
* pcmpl-cvs.el:
* pcmpl-gnu.el:
* pcomplete.el:
* pcvs-info.el:
* pcvs-parse.el:
* printing.el:
* ps-mule.el:
* ps-print.el:
* replace.el:
* ruler-mode.el:
* saveplace.el:
* sb-image.el:
* scroll-bar.el:
* sha1.el:
* shadowfile.el:
* shell.el:
* sort.el:
* speedbar.el:
* strokes.el:
* tempo.el:
* term.el:
* terminal.el:
* time-stamp.el:
* time.el:
* tree-widget.el:
* type-break.el:
* vc-cvs.el:
* vc-hg.el:
* vc-mcvs.el:
* vc-rcs.el:
* vc-sccs.el:
* vc.el:
* view.el:
* w32-vars.el:
* whitespace.el:
* wid-edit.el: Remove leading * from docstrings of defcustoms,
deffaces, defconsts and defuns.
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Wed, 03 Dec 2008 05:48:14 +0000 |
parents | ee5932bf781d |
children | a9dc0e7c3f2b |
comparison
equal
deleted
inserted
replaced
100170:86455974b971 | 100171:d42aff5ca541 |
---|---|
36 | 36 |
37 | 37 |
38 ;;;###autoload | 38 ;;;###autoload |
39 (defcustom image-file-name-extensions | 39 (defcustom image-file-name-extensions |
40 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg") | 40 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg") |
41 "*A list of image-file filename extensions. | 41 "A list of image-file filename extensions. |
42 Filenames having one of these extensions are considered image files, | 42 Filenames having one of these extensions are considered image files, |
43 in addition to those matching `image-file-name-regexps'. | 43 in addition to those matching `image-file-name-regexps'. |
44 | 44 |
45 See `auto-image-file-mode'; if `auto-image-file-mode' is enabled, | 45 See `auto-image-file-mode'; if `auto-image-file-mode' is enabled, |
46 setting this variable directly does not take effect unless | 46 setting this variable directly does not take effect unless |
55 :initialize 'custom-initialize-default | 55 :initialize 'custom-initialize-default |
56 :group 'image) | 56 :group 'image) |
57 | 57 |
58 ;;;###autoload | 58 ;;;###autoload |
59 (defcustom image-file-name-regexps nil | 59 (defcustom image-file-name-regexps nil |
60 "*List of regexps matching image-file filenames. | 60 "List of regexps matching image-file filenames. |
61 Filenames matching one of these regexps are considered image files, | 61 Filenames matching one of these regexps are considered image files, |
62 in addition to those with an extension in `image-file-name-extensions'. | 62 in addition to those with an extension in `image-file-name-extensions'. |
63 | 63 |
64 See function `auto-image-file-mode'; if `auto-image-file-mode' is | 64 See function `auto-image-file-mode'; if `auto-image-file-mode' is |
65 enabled, setting this variable directly does not take effect unless | 65 enabled, setting this variable directly does not take effect unless |