aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSimen Heggestøyl2018-11-11 10:21:30 +0100
committerSimen Heggestøyl2018-11-11 10:31:51 +0100
commitd614b84fa4af512a2caccb950643a08616e14355 (patch)
tree2dcab286aaeda4b33138216b15404ad886fd6af1 /lisp
parent8c2778a9fbb82ed55335404f2b312fcc04bafaea (diff)
downloademacs-d614b84fa4af512a2caccb950643a08616e14355.tar.gz
emacs-d614b84fa4af512a2caccb950643a08616e14355.zip
Fix typos in midnight.el
* lisp/midnight.el (clean-buffer-list-delay-general) (clean-buffer-list-kill-regexps) (clean-buffer-list-kill-buffer-names): Fix docstring typos.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/midnight.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el
index 82994c579f7..7c4096c326f 100644
--- a/lisp/midnight.el
+++ b/lisp/midnight.el
@@ -64,7 +64,7 @@ the time when it is run.")
64 64
65(defcustom clean-buffer-list-delay-general 3 65(defcustom clean-buffer-list-delay-general 3
66 "The number of days before any buffer becomes eligible for autokilling. 66 "The number of days before any buffer becomes eligible for autokilling.
67The autokilling is done by `clean-buffer-list' when is it in `midnight-hook'. 67The autokilling is done by `clean-buffer-list' when it is in `midnight-hook'.
68Currently displayed and/or modified (unsaved) buffers, as well as buffers 68Currently displayed and/or modified (unsaved) buffers, as well as buffers
69matching `clean-buffer-list-kill-never-buffer-names' and 69matching `clean-buffer-list-kill-never-buffer-names' and
70`clean-buffer-list-kill-never-regexps' are excluded." 70`clean-buffer-list-kill-never-regexps' are excluded."
@@ -81,7 +81,7 @@ displayed more than this many seconds ago."
81 "List of regexps saying which buffers will be killed at midnight. 81 "List of regexps saying which buffers will be killed at midnight.
82If buffer name matches a regexp in the list and the buffer was not displayed 82If buffer name matches a regexp in the list and the buffer was not displayed
83in the last `clean-buffer-list-delay-special' seconds, it is killed by 83in the last `clean-buffer-list-delay-special' seconds, it is killed by
84`clean-buffer-list' when is it in `midnight-hook'. 84`clean-buffer-list' when it is in `midnight-hook'.
85If a member of the list is a cons, its `car' is the regexp and its `cdr' is 85If a member of the list is a cons, its `car' is the regexp and its `cdr' is
86the number of seconds to use instead of `clean-buffer-list-delay-special'. 86the number of seconds to use instead of `clean-buffer-list-delay-special'.
87See also `clean-buffer-list-kill-buffer-names', 87See also `clean-buffer-list-kill-buffer-names',
@@ -101,7 +101,7 @@ if the buffer should be killed by `clean-buffer-list'."
101 "List of strings saying which buffers will be killed at midnight. 101 "List of strings saying which buffers will be killed at midnight.
102Buffers with names in this list, which were not displayed in the last 102Buffers with names in this list, which were not displayed in the last
103`clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list' 103`clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list'
104when is it in `midnight-hook'. 104when it is in `midnight-hook'.
105If a member of the list is a cons, its `car' is the name and its `cdr' is 105If a member of the list is a cons, its `car' is the name and its `cdr' is
106the number of seconds to use instead of `clean-buffer-list-delay-special'. 106the number of seconds to use instead of `clean-buffer-list-delay-special'.
107See also `clean-buffer-list-kill-regexps', 107See also `clean-buffer-list-kill-regexps',