1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(array-what-position): Delete format call inside message.

This commit is contained in:
Karl Heuer 1996-01-25 00:59:25 +00:00
parent 5fb0f713c5
commit 4bf785ba7e

View file

@ -103,9 +103,9 @@ to the optional arguments A-ROW and A-COLUMN."
(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."