diff options
| author | Karl Heuer | 1996-01-25 00:59:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:59:25 +0000 |
| commit | 4bf785ba7e527fc2f82360c322dcfaa1dd367439 (patch) | |
| tree | d21e6f3ac421f548f1fd4e8efc06819f57b97336 /lisp/array.el | |
| parent | 5fb0f713c54c192cef7792a89998b2d9f13d98aa (diff) | |
| download | emacs-4bf785ba7e527fc2f82360c322dcfaa1dd367439.tar.gz emacs-4bf785ba7e527fc2f82360c322dcfaa1dd367439.zip | |
(array-what-position): Delete format call inside message.
Diffstat (limited to 'lisp/array.el')
| -rw-r--r-- | lisp/array.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/array.el b/lisp/array.el index 605c31bf874..fab1c1ec59c 100644 --- a/lisp/array.el +++ b/lisp/array.el | |||
| @@ -103,9 +103,9 @@ to the optional arguments A-ROW and A-COLUMN." | |||
| 103 | (interactive) | 103 | (interactive) |
| 104 | (let ((buffer-line (current-line)) | 104 | (let ((buffer-line (current-line)) |
| 105 | (buffer-column (current-column))) | 105 | (buffer-column (current-column))) |
| 106 | (message (format "Array row: %s Array column: %s" | 106 | (message "Array row: %s Array column: %s" |
| 107 | (prin1-to-string (array-current-row)) | 107 | (prin1-to-string (array-current-row)) |
| 108 | (prin1-to-string (array-current-column)))))) | 108 | (prin1-to-string (array-current-column))))) |
| 109 | 109 | ||
| 110 | (defun array-display-local-variables () | 110 | (defun array-display-local-variables () |
| 111 | "Display the current state of the local variables in the minibuffer." | 111 | "Display the current state of the local variables in the minibuffer." |