From: Karl Heuer Date: Thu, 25 Jan 1996 00:59:25 +0000 (+0000) Subject: (array-what-position): Delete format call inside message. X-Git-Tag: emacs-19.34~1522 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4bf785ba7e527fc2f82360c322dcfaa1dd367439;p=emacs.git (array-what-position): Delete format call inside message. --- 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." (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."