aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/image-dired.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 85a19f355d0..5d0be781005 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12007-04-28 Glenn Morris <rgm@gnu.org>
2
3 * image-dired.el (image-dired-cmd-create-thumbnail-options)
4 (image-dired-cmd-create-temp-image-options): Replace option
5 +profile "*" with -strip.
6
12007-04-27 Chong Yidong <cyd@stupidchicken.com> 72007-04-27 Chong Yidong <cyd@stupidchicken.com>
2 8
3 * textmodes/flyspell.el (flyspell-auto-correct-previous-word): Use 9 * textmodes/flyspell.el (flyspell-auto-correct-previous-word): Use
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 49c9832cbcf..867c50df013 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -228,7 +228,7 @@ Used together with `image-dired-cmd-create-thumbnail-options'."
228 :group 'image-dired) 228 :group 'image-dired)
229 229
230(defcustom image-dired-cmd-create-thumbnail-options 230(defcustom image-dired-cmd-create-thumbnail-options
231 "%p -size %wx%h \"%f\" -resize %wx%h +profile \"*\" jpeg:\"%t\"" 231 "%p -size %wx%h \"%f\" -resize %wx%h -strip jpeg:\"%t\""
232 "Format of command used to create thumbnail image. 232 "Format of command used to create thumbnail image.
233Available options are %p which is replaced by 233Available options are %p which is replaced by
234`image-dired-cmd-create-thumbnail-program', %w which is replaced by 234`image-dired-cmd-create-thumbnail-program', %w which is replaced by
@@ -246,7 +246,7 @@ Used together with `image-dired-cmd-create-temp-image-options'."
246 :group 'image-dired) 246 :group 'image-dired)
247 247
248(defcustom image-dired-cmd-create-temp-image-options 248(defcustom image-dired-cmd-create-temp-image-options
249 "%p -size %wx%h \"%f\" -resize %wx%h +profile \"*\" jpeg:\"%t\"" 249 "%p -size %wx%h \"%f\" -resize %wx%h -strip jpeg:\"%t\""
250 "Format of command used to create temporary image for display window. 250 "Format of command used to create temporary image for display window.
251Available options are %p which is replaced by 251Available options are %p which is replaced by
252`image-dired-cmd-create-temp-image-program', %w and %h which is replaced by 252`image-dired-cmd-create-temp-image-program', %w and %h which is replaced by