aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-06 15:45:11 +0000
committerJuanma Barranquero2005-06-06 15:45:11 +0000
commitb3c70578e71987952f44540aa718efdc2b4427ea (patch)
tree93a4dd80a9e2d9b031ec4ed090dd1c08e664196c
parent01f438b9127dfff6f951f1b1574ac46a98635d72 (diff)
downloademacs-b3c70578e71987952f44540aa718efdc2b4427ea.tar.gz
emacs-b3c70578e71987952f44540aa718efdc2b4427ea.zip
(thumbs-thumbsdir-max-size, thumbs-image-resizing-step,
thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/thumbs.el6
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 50a49774795..6b778e51742 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -72,6 +72,9 @@
72 72
732005-06-06 Juanma Barranquero <lekktu@gmail.com> 732005-06-06 Juanma Barranquero <lekktu@gmail.com>
74 74
75 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
76 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
77
75 * ps-print.el (ps-default-fg, ps-default-bg): 78 * ps-print.el (ps-default-fg, ps-default-bg):
76 Fix typos in docstrings. 79 Fix typos in docstrings.
77 80
diff --git a/lisp/thumbs.el b/lisp/thumbs.el
index 321fe7266cc..c335b259c35 100644
--- a/lisp/thumbs.el
+++ b/lisp/thumbs.el
@@ -83,7 +83,7 @@
83 83
84(defcustom thumbs-thumbsdir-max-size 50000000 84(defcustom thumbs-thumbsdir-max-size 50000000
85 "Max size for thumbnails directory. 85 "Max size for thumbnails directory.
86When it reachs that size (in bytes), a warning is sent." 86When it reaches that size (in bytes), a warning is sent."
87 :type 'string 87 :type 'string
88 :group 'thumbs) 88 :group 'thumbs)
89 89
@@ -117,12 +117,12 @@ This is where you see the cursor."
117(defcustom thumbs-thumbsdir-auto-clean t 117(defcustom thumbs-thumbsdir-auto-clean t
118 "If set, delete older file in the thumbnails directory. 118 "If set, delete older file in the thumbnails directory.
119Deletion is done at load time when the directory size is bigger 119Deletion is done at load time when the directory size is bigger
120than 'thumbs-thumbsdir-max-size'." 120than `thumbs-thumbsdir-max-size'."
121 :type 'boolean 121 :type 'boolean
122 :group 'thumbs) 122 :group 'thumbs)
123 123
124(defcustom thumbs-image-resizing-step 10 124(defcustom thumbs-image-resizing-step 10
125 "Step by wich to resize image." 125 "Step by which to resize image."
126 :type 'string 126 :type 'string
127 :group 'thumbs) 127 :group 'thumbs)
128 128