aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/calendar/cal-hebrew.el2
-rw-r--r--lisp/custom.el6
-rw-r--r--lisp/gnus/ChangeLog14
-rw-r--r--lisp/gnus/gnus-start.el4
-rw-r--r--lisp/gnus/shr.el5
-rw-r--r--lisp/mail/smtpmail.el12
-rw-r--r--lisp/minibuffer.el8
-rw-r--r--lisp/shell.el5
9 files changed, 59 insertions, 20 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f7ecfb529f2..e2e45bf1535 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,10 +1,31 @@
12012-02-16 Kenichi Handa <handa@m17n.org> 12012-02-17 Kenichi Handa <handa@m17n.org>
2 2
3 * international/charprop.el: 3 * international/charprop.el:
4 * international/uni-name.el: 4 * international/uni-name.el:
5 * international/uni-old-name.el: 5 * international/uni-old-name.el:
6 * international/uni-comment.el: Regenerate. 6 * international/uni-comment.el: Regenerate.
7 7
82012-02-16 Glenn Morris <rgm@gnu.org>
9
10 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
11 Interactively in calendar buffer, give an error if not on a date.
12
132012-02-15 Glenn Morris <rgm@gnu.org>
14
15 * shell.el (shell-delimiter-argument-list):
16 Revert 2011-02-17 change. (Bug#8027)
17
182012-02-15 Chong Yidong <cyd@gnu.org>
19
20 * minibuffer.el (completion-at-point-functions): Doc fix.
21
22 * custom.el (defcustom): Doc fix; note use of defvar.
23
242012-02-15 Glenn Morris <rgm@gnu.org>
25
26 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
27 Doc fixes.
28
82012-02-14 Glenn Morris <rgm@gnu.org> 292012-02-14 Glenn Morris <rgm@gnu.org>
9 30
10 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc. 31 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
diff --git a/lisp/calendar/cal-hebrew.el b/lisp/calendar/cal-hebrew.el
index cb738675cc4..9db77d7bd87 100644
--- a/lisp/calendar/cal-hebrew.el
+++ b/lisp/calendar/cal-hebrew.el
@@ -731,7 +731,7 @@ from the cursor position."
731 (interactive 731 (interactive
732 (let* ((death-date 732 (let* ((death-date
733 (if (equal (current-buffer) (get-buffer calendar-buffer)) 733 (if (equal (current-buffer) (get-buffer calendar-buffer))
734 (calendar-cursor-to-date) 734 (calendar-cursor-to-date t)
735 (let* ((today (calendar-current-date)) 735 (let* ((today (calendar-current-date))
736 (year (calendar-read 736 (year (calendar-read
737 "Year of death (>0): " 737 "Year of death (>0): "
diff --git a/lisp/custom.el b/lisp/custom.el
index 2d880d23955..810b78144a4 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -208,7 +208,11 @@ is unbound. The expression itself is also stored, so that
208Customize can re-evaluate it later to get the standard value. 208Customize can re-evaluate it later to get the standard value.
209DOC is the variable documentation. 209DOC is the variable documentation.
210 210
211The remaining arguments should have the form 211This macro uses `defvar' as a subroutine, which also marks the
212variable as \"special\", so that it is always dynamically bound
213even when `lexical-binding' is t.
214
215The remaining arguments to `defcustom' should have the form
212 216
213 [KEYWORD VALUE]... 217 [KEYWORD VALUE]...
214 218
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 99554cd9ffe..61f6ff9a3d3 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,17 @@
12012-02-16 Leo Liu <sdl.web@gmail.com>
2
3 * gnus-start.el (gnus-1): Avoid duplicate entries.
4
52012-02-15 Lars Ingebrigtsen <larsi@gnus.org>
6
7 * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
8 too-wide lines.
9
102012-02-15 Paul Eggert <eggert@cs.ucla.edu>
11
12 * shr.el (shr-rescale-image): Undo previous change; see
13 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
14
12012-02-13 Lars Ingebrigtsen <larsi@gnus.org> 152012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
2 16
3 * nnimap.el (nnimap-record-commands): New variable. 17 * nnimap.el (nnimap-record-commands): New variable.
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index 9b1d5681e6c..bb7dd76d590 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -763,8 +763,8 @@ prompt the user for the name of an NNTP server to use."
763 ;; Add "native" to gnus-predefined-server-alist just to have a 763 ;; Add "native" to gnus-predefined-server-alist just to have a
764 ;; name for the native select method. 764 ;; name for the native select method.
765 (when gnus-select-method 765 (when gnus-select-method
766 (push (cons "native" gnus-select-method) 766 (add-to-list 'gnus-predefined-server-alist
767 gnus-predefined-server-alist)) 767 (cons "native" gnus-select-method)))
768 768
769 (if gnus-agent 769 (if gnus-agent
770 (gnus-agentize)) 770 (gnus-agentize))
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el
index 47622f5183d..f3d75032926 100644
--- a/lisp/gnus/shr.el
+++ b/lisp/gnus/shr.el
@@ -160,7 +160,7 @@ DOM should be a parse tree as generated by
160 (goto-char start) 160 (goto-char start)
161 (while (not (eobp)) 161 (while (not (eobp))
162 (end-of-line) 162 (end-of-line)
163 (when (> (current-column) width) 163 (when (> (shr-previous-newline-padding-width (current-column)) width)
164 (dolist (overlay (overlays-at (point))) 164 (dolist (overlay (overlays-at (point)))
165 (when (overlay-get overlay 'before-string) 165 (when (overlay-get overlay 'before-string)
166 (overlay-put overlay 'before-string nil)))) 166 (overlay-put overlay 'before-string nil))))
@@ -557,8 +557,7 @@ the URL of the image to the kill buffer instead."
557 (insert alt))) 557 (insert alt)))
558 558
559(defun shr-rescale-image (data) 559(defun shr-rescale-image (data)
560 (let* ((max-image-size nil) 560 (let ((image (create-image data nil t :ascent 100)))
561 (image (create-image data nil t :ascent 100)))
562 (if (or (not (fboundp 'imagemagick-types)) 561 (if (or (not (fboundp 'imagemagick-types))
563 (not (get-buffer-window (current-buffer)))) 562 (not (get-buffer-window (current-buffer))))
564 image 563 image
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index bbd8d7ce1ef..3233cff2768 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -86,7 +86,8 @@ The default value would be \"smtp\" or 25."
86 :group 'smtpmail) 86 :group 'smtpmail)
87 87
88(defcustom smtpmail-smtp-user nil 88(defcustom smtpmail-smtp-user nil
89 "User name to use when looking up credentials." 89 "User name to use when looking up credentials in the authinfo file.
90If non-nil, only consider credentials for the specified user."
90 :version "24.1" 91 :version "24.1"
91 :type '(choice (const nil) string) 92 :type '(choice (const nil) string)
92 :group 'smtpmail) 93 :group 'smtpmail)
@@ -99,11 +100,10 @@ don't define this value."
99 :group 'smtpmail) 100 :group 'smtpmail)
100 101
101(defcustom smtpmail-stream-type nil 102(defcustom smtpmail-stream-type nil
102 "Connection type SMTP connections. 103 "Type of SMTP connections to use.
103This may be either nil (possibly upgraded to STARTTLS if 104This may be either nil (possibly upgraded to STARTTLS if possible),
104possible), or `starttls' (refuse to send if STARTTLS isn't 105or `starttls' (refuse to send if STARTTLS isn't available), or `plain'
105available), or `plain' (never use STARTTLS), or `ssl' (to use 106\(never use STARTTLS), or `ssl' (to use TLS/SSL)."
106TLS/SSL)."
107 :version "24.1" 107 :version "24.1"
108 :group 'smtpmail 108 :group 'smtpmail
109 :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil) 109 :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil)
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 611df1eb6d9..8564cc2009b 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -1550,16 +1550,16 @@ the mode if ARG is omitted or nil."
1550Each function on this hook is called in turns without any argument and should 1550Each function on this hook is called in turns without any argument and should
1551return either nil to mean that it is not applicable at point, 1551return either nil to mean that it is not applicable at point,
1552or a function of no argument to perform completion (discouraged), 1552or a function of no argument to perform completion (discouraged),
1553or a list of the form (START END COLLECTION &rest PROPS) where 1553or a list of the form (START END COLLECTION . PROPS) where
1554 START and END delimit the entity to complete and should include point, 1554 START and END delimit the entity to complete and should include point,
1555 COLLECTION is the completion table to use to complete it, and 1555 COLLECTION is the completion table to use to complete it, and
1556 PROPS is a property list for additional information. 1556 PROPS is a property list for additional information.
1557Currently supported properties are all the properties that can appear in 1557Currently supported properties are all the properties that can appear in
1558`completion-extra-properties' plus: 1558`completion-extra-properties' plus:
1559 `:predicate' a predicate that completion candidates need to satisfy. 1559 `:predicate' a predicate that completion candidates need to satisfy.
1560 `:exclusive' If `no', means that if the completion data does not match the 1560 `:exclusive' If `no', means that if the completion table fails to
1561 text at point failure, then instead of reporting a completion failure, 1561 match the text at point, then instead of reporting a completion
1562 the completion should try the next completion function.") 1562 failure, the completion should try the next completion function.")
1563 1563
1564(defvar completion--capf-misbehave-funs nil 1564(defvar completion--capf-misbehave-funs nil
1565 "List of functions found on `completion-at-point-functions' that misbehave. 1565 "List of functions found on `completion-at-point-functions' that misbehave.
diff --git a/lisp/shell.el b/lisp/shell.el
index e7a8953ecbe..b4b388655c8 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -153,13 +153,14 @@ This is a fine thing to set in your `.emacs' file."
153 :type '(repeat (string :tag "Suffix")) 153 :type '(repeat (string :tag "Suffix"))
154 :group 'shell) 154 :group 'shell)
155 155
156(defcustom shell-delimiter-argument-list nil ; '(?\| ?& ?< ?> ?\( ?\) ?\;) 156(defcustom shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
157 "List of characters to recognize as separate arguments. 157 "List of characters to recognize as separate arguments.
158This variable is used to initialize `comint-delimiter-argument-list' in the 158This variable is used to initialize `comint-delimiter-argument-list' in the
159shell buffer. The value may depend on the operating system or shell." 159shell buffer. The value may depend on the operating system or shell."
160 :type '(choice (const nil) 160 :type '(choice (const nil)
161 (repeat :tag "List of characters" character)) 161 (repeat :tag "List of characters" character))
162 :version "24.1" ; changed to nil (bug#8027) 162 ;; Reverted.
163;; :version "24.1" ; changed to nil (bug#8027)
163 :group 'shell) 164 :group 'shell)
164 165
165(defvar shell-file-name-chars 166(defvar shell-file-name-chars