diff options
| author | Stefan Monnier | 2000-10-05 22:31:44 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-10-05 22:31:44 +0000 |
| commit | 34a1934628a42c7874712f712aee362707962329 (patch) | |
| tree | e42f191954aa656c12c7fedeb2458b21aeeb5f8b | |
| parent | 8304a3bb773ccfdbdc88819049401b776371f1a0 (diff) | |
| download | emacs-34a1934628a42c7874712f712aee362707962329.tar.gz emacs-34a1934628a42c7874712f712aee362707962329.zip | |
Docstring fixes.
| -rw-r--r-- | lisp/image-file.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/image-file.el b/lisp/image-file.el index a3a23efcc09..0265f4b5ffa 100644 --- a/lisp/image-file.el +++ b/lisp/image-file.el | |||
| @@ -56,7 +56,7 @@ variable is set using \\[customize]." | |||
| 56 | :group 'image) | 56 | :group 'image) |
| 57 | 57 | ||
| 58 | (defcustom image-file-name-regexps nil | 58 | (defcustom image-file-name-regexps nil |
| 59 | "*A list of regexps matching image-file filenames. | 59 | "*List of regexps matching image-file filenames. |
| 60 | Filenames matching one of these regexps are considered image files, | 60 | Filenames matching one of these regexps are considered image files, |
| 61 | in addition to those with an extension in `image-file-name-extensions'. | 61 | in addition to those with an extension in `image-file-name-extensions'. |
| 62 | 62 | ||
| @@ -76,7 +76,7 @@ variable is set using \\[customize]." | |||
| 76 | 76 | ||
| 77 | ;;;###autoload | 77 | ;;;###autoload |
| 78 | (defun image-file-name-regexp () | 78 | (defun image-file-name-regexp () |
| 79 | "Return a regular expression that matches image-file filenames." | 79 | "Return a regular expression matching image-file filenames." |
| 80 | (let ((exts-regexp | 80 | (let ((exts-regexp |
| 81 | (and image-file-name-extensions | 81 | (and image-file-name-extensions |
| 82 | (concat "\\." | 82 | (concat "\\." |
| @@ -150,7 +150,7 @@ the command `insert-file-contents'." | |||
| 150 | rval)) | 150 | rval)) |
| 151 | 151 | ||
| 152 | (defun image-file-handler (operation &rest args) | 152 | (defun image-file-handler (operation &rest args) |
| 153 | "File name handler for inserting image files. | 153 | "Filename handler for inserting image files. |
| 154 | OPERATION is the operation to perform, on ARGS. | 154 | OPERATION is the operation to perform, on ARGS. |
| 155 | See `file-name-handler-alist' for details." | 155 | See `file-name-handler-alist' for details." |
| 156 | (if (and (eq operation 'insert-file-contents) | 156 | (if (and (eq operation 'insert-file-contents) |