diff options
Diffstat (limited to 'lisp/image-dired.el')
-rw-r--r-- | lisp/image-dired.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el index 6f297672caf..a29adde8325 100644 --- a/lisp/image-dired.el +++ b/lisp/image-dired.el @@ -60,12 +60,12 @@ ;; ============= ;; ;; * The ImageMagick package. Currently, `convert' and `mogrify' are -;; used. Find it here: http://www.imagemagick.org. +;; used. Find it here: https://www.imagemagick.org. ;; ;; * For non-lossy rotation of JPEG images, the JpegTRAN program is ;; needed. ;; -;; * For `image-dired-get-exif-data' and `image-dired-write-exif-data' to work, +;; * For `image-dired-get-exif-data' and `image-dired-set-exif-data' to work, ;; the command line tool `exiftool' is needed. It can be found here: ;; http://www.sno.phy.queensu.ca/~phil/exiftool/. These two functions ;; are, among other things, used for writing comments to image files @@ -205,7 +205,7 @@ the index.html page that image-dired creates." :group 'image-dired) (defcustom image-dired-gallery-image-root-url -"http://your.own.server/image-diredpics" +"https://your.own.server/image-diredpics" "URL where the full size images are to be found. Note that this path has to be configured in your web server. Image-Dired expects to find pictures in this directory." @@ -213,7 +213,7 @@ expects to find pictures in this directory." :group 'image-dired) (defcustom image-dired-gallery-thumb-image-root-url -"http://your.own.server/image-diredthumbs" +"https://your.own.server/image-diredthumbs" "URL where the thumbnail images are to be found. Note that this path has to be configured in your web server. Image-Dired expects to find pictures in this directory." @@ -309,7 +309,7 @@ temporary file name (typically generated by pnqnq)." :group 'image-dired) (defcustom image-dired-cmd-optipng-options '("-o5" "%t") - "Arguments passed to `image-dired-optipng-program'. + "Arguments passed to `image-dired-cmd-optipng-program'. Available format specifiers are described in `image-dired-cmd-create-thumbnail-options'." :version "26.1" |