diff options
| author | Noam Postavsky | 2019-04-17 20:22:09 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2019-04-19 15:19:45 -0400 |
| commit | 037970f1af6c87767501ac6d46c50abe9d3f44e0 (patch) | |
| tree | 0a89bca154fe2a2ff5bcfc61bc80ae3b0169e660 | |
| parent | 598b45adbd8cfc39cf797465ce57a5a50fe730d5 (diff) | |
| download | emacs-037970f1af6c87767501ac6d46c50abe9d3f44e0.tar.gz emacs-037970f1af6c87767501ac6d46c50abe9d3f44e0.zip | |
Document insert-image-file's return value (Bug#32978)
* lisp/image-file.el (insert-image-file): Document return value.
| -rw-r--r-- | lisp/image-file.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/image-file.el b/lisp/image-file.el index 46358b6eae7..123a50e1846 100644 --- a/lisp/image-file.el +++ b/lisp/image-file.el | |||
| @@ -97,8 +97,9 @@ the variable is set using \\[customize]." | |||
| 97 | ;;;###autoload | 97 | ;;;###autoload |
| 98 | (defun insert-image-file (file &optional visit beg end replace) | 98 | (defun insert-image-file (file &optional visit beg end replace) |
| 99 | "Insert the image file FILE into the current buffer. | 99 | "Insert the image file FILE into the current buffer. |
| 100 | Optional arguments VISIT, BEG, END, and REPLACE are interpreted as for | 100 | Optional arguments VISIT, BEG, END, and REPLACE are interpreted |
| 101 | the command `insert-file-contents'." | 101 | as for the command `insert-file-contents'. Return list of |
| 102 | absolute file name and number of characters inserted." | ||
| 102 | (let ((rval | 103 | (let ((rval |
| 103 | (image-file-call-underlying #'insert-file-contents-literally | 104 | (image-file-call-underlying #'insert-file-contents-literally |
| 104 | 'insert-file-contents | 105 | 'insert-file-contents |