Mercurial > emacs
diff lisp/array.el @ 14338:0f8f00733165
(array-what-position): Delete format call inside message.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Thu, 25 Jan 1996 00:59:25 +0000 |
| parents | 83f275dcd93a |
| children | e9650ae37732 |
line wrap: on
line diff
--- a/lisp/array.el Thu Jan 25 00:59:05 1996 +0000 +++ b/lisp/array.el Thu Jan 25 00:59:25 1996 +0000 @@ -103,9 +103,9 @@ (interactive) (let ((buffer-line (current-line)) (buffer-column (current-column))) - (message (format "Array row: %s Array column: %s" - (prin1-to-string (array-current-row)) - (prin1-to-string (array-current-column)))))) + (message "Array row: %s Array column: %s" + (prin1-to-string (array-current-row)) + (prin1-to-string (array-current-column))))) (defun array-display-local-variables () "Display the current state of the local variables in the minibuffer."
