]> git.eshelyaron.com Git - emacs.git/commitdiff
(image_error): Use add_to_log.
authorGerd Moellmann <gerd@gnu.org>
Thu, 23 Sep 1999 22:17:46 +0000 (22:17 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 23 Sep 1999 22:17:46 +0000 (22:17 +0000)
src/xfns.c

index 90df3eacb65a871682a6a9ce11a04ea61ab6934b..c0fb0f5cf2d3bb8eca26ad694c445b4b9ffa5585 100644 (file)
@@ -5524,23 +5524,18 @@ valid_image_p (object)
 }
 
 
-/* Display an error message with format string FORMAT and argument
-   ARG.  Signaling an error, e.g. when an image cannot be loaded,
-   is not a good idea because this would interrupt redisplay, and
-   the error message display would lead to another redisplay.  This
-   function therefore simply displays a message.  */
+/* Log error message with format string FORMAT and argument ARG.
+   Signaling an error, e.g. when an image cannot be loaded, is not a
+   good idea because this would interrupt redisplay, and the error
+   message display would lead to another redisplay.  This function
+   therefore simply displays a message.  */
 
 static void
 image_error (format, arg1, arg2)
      char *format;
      Lisp_Object arg1, arg2;
 {
-  Lisp_Object args[3];
-
-  args[0] = build_string (format);
-  args[1] = arg1;
-  args[2] = arg2;
-  Fmessage (make_number (DIM (args)), args);
+  add_to_log (format, arg1, arg2);
 }