diff options
| author | Paul Eggert | 2015-10-08 13:54:04 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-10-08 13:54:33 -0700 |
| commit | a00634c20988215a47ec6c00cea85a2eac162597 (patch) | |
| tree | 0216ea3a925cf3cef272643d3b66360110aabad0 /src | |
| parent | 5a3a6aa71f8c875b2d045d02628a0fc54d422295 (diff) | |
| download | emacs-a00634c20988215a47ec6c00cea85a2eac162597.tar.gz emacs-a00634c20988215a47ec6c00cea85a2eac162597.zip | |
* src/image.c (image_size_error): Simplify.
Diffstat (limited to 'src')
| -rw-r--r-- | src/image.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c index 617cf70eb17..4d1d2014258 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -647,8 +647,7 @@ image_error (const char *format, ...) | |||
| 647 | static void | 647 | static void |
| 648 | image_size_error (void) | 648 | image_size_error (void) |
| 649 | { | 649 | { |
| 650 | AUTO_STRING (max_image_size_name, "max-image-size"); | 650 | image_error ("Invalid image size (see `max-image-size')"); |
| 651 | image_error ("Invalid image size (see `%s')", max_image_size_name); | ||
| 652 | } | 651 | } |
| 653 | 652 | ||
| 654 | 653 | ||