Merge from mainline.
This commit is contained in:
commit
13c15c6d70
14 changed files with 92 additions and 28 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-05-03 Peter Münster <pmlists@free.fr>
|
||||
|
||||
* gnus.texi (Summary Buffer Lines):
|
||||
gnus-summary-user-date-format-alist does not exist.
|
||||
(Sorting the Summary Buffer): More about sorting threads.
|
||||
|
||||
2011-04-25 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* trampver.texi: Update release number.
|
||||
|
|
|
@ -4953,7 +4953,7 @@ Download mark.
|
|||
Desired cursor position (instead of after first colon).
|
||||
@item &user-date;
|
||||
Age sensitive date format. Various date format is defined in
|
||||
@code{gnus-summary-user-date-format-alist}.
|
||||
@code{gnus-user-date-format-alist}.
|
||||
@item u
|
||||
User defined specifier. The next character in the format string should
|
||||
be a letter. Gnus will call the function
|
||||
|
@ -7340,7 +7340,9 @@ predicate functions include @code{gnus-thread-sort-by-number},
|
|||
|
||||
Each function takes two threads and returns non-@code{nil} if the first
|
||||
thread should be sorted before the other. Note that sorting really is
|
||||
normally done by looking only at the roots of each thread.
|
||||
normally done by looking only at the roots of each thread. Exceptions
|
||||
to this rule are @code{gnus-thread-sort-by-most-recent-number} and
|
||||
@code{gnus-thread-sort-by-most-recent-date}.
|
||||
|
||||
If you use more than one function, the primary sort key should be the
|
||||
last function in the list. You should probably always include
|
||||
|
|
|
@ -1,7 +1,27 @@
|
|||
2011-05-03 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
|
||||
|
||||
2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
|
||||
|
||||
* textmodes/ispell.el (ispell-add-per-file-word-list):
|
||||
Use `concat' to create string for insertion.
|
||||
|
||||
2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
|
||||
Avoid open-line which runs post-self-insert-hook.
|
||||
(bibtex-fill-entry): Remove unused `end' var.
|
||||
|
||||
2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
|
||||
|
||||
* textmodes/ispell.el (ispell-add-per-file-word-list):
|
||||
Protect against `nil' value of `comment-start' (Bug#8579).
|
||||
|
||||
2011-05-03 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* isearch.el (isearch-yank-pop): New command.
|
||||
(isearch-mode-map): bind it to `M-y'.
|
||||
(isearch-mode-map): Bind it to `M-y'.
|
||||
(isearch-forward): Mention it.
|
||||
|
||||
2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
|
|
@ -35,10 +35,18 @@
|
|||
(eval-when-compile (require 'cl))
|
||||
|
||||
(defvar generated-autoload-file "loaddefs.el"
|
||||
"*File \\[update-file-autoloads] puts autoloads into.
|
||||
A `.el' file can set this in its local variables section to make its
|
||||
autoloads go somewhere else. The autoload file is assumed to contain a
|
||||
trailer starting with a FormFeed character.")
|
||||
"File \\[update-file-autoloads] puts autoloads into.
|
||||
A Lisp file can set this in its local variables section to make
|
||||
its autoloads go somewhere else.
|
||||
|
||||
If this is a relative file name, the directory is determined as
|
||||
follows:
|
||||
- If a Lisp file defined `generated-autoload-file' as a
|
||||
file-local variable, use its containing directory.
|
||||
- Otherwise use the \"lisp\" subdirectory of `source-directory'.
|
||||
|
||||
The autoload file is assumed to contain a trailer starting with a
|
||||
FormFeed character.")
|
||||
;;;###autoload
|
||||
(put 'generated-autoload-file 'safe-local-variable 'stringp)
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2011-05-03 Debarshi Ray <rishi@gnu.org> (tiny change)
|
||||
|
||||
* erc-backend.el (671): New response handler.
|
||||
* erc.el (english): Add 671 to catalog.
|
||||
|
||||
2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* erc-pcomplete.el (erc-pcomplete-nick-postfix): Remove the " " in the
|
||||
|
|
|
@ -1951,6 +1951,13 @@ See `erc-display-server-message'." nil
|
|||
(erc-display-message parsed '(error notice) 'active 's482
|
||||
?c channel ?m message)))
|
||||
|
||||
(define-erc-response-handler (671)
|
||||
"Secure connection response in WHOIS." nil
|
||||
(let ((nick (second (erc-response.command-args parsed)))
|
||||
(securemsg (erc-response.contents parsed)))
|
||||
(erc-display-message parsed 'notice 'active 's671
|
||||
?n nick ?a securemsg)))
|
||||
|
||||
(define-erc-response-handler (431 445 446 451 462 463 464 481 483 484 485
|
||||
491 501 502)
|
||||
;; 431 - No nickname given
|
||||
|
|
|
@ -6351,7 +6351,8 @@ All windows are opened in the current frame."
|
|||
(s485 . "You're not the original channel operator")
|
||||
(s491 . "No O-lines for your host")
|
||||
(s501 . "Unknown MODE flag")
|
||||
(s502 . "You can't change modes for other users")))
|
||||
(s502 . "You can't change modes for other users")
|
||||
(s671 . "%n %a")))
|
||||
|
||||
(defun erc-message-english-PART (&rest args)
|
||||
"Format a proper PART message.
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2011-05-03 Teodor Zlatanov <tzz@lifelogs.com>
|
||||
|
||||
* shr.el: Add shr-link face for links.
|
||||
(shr-urlify): Use it.
|
||||
|
||||
* registry.el (registry-insert): Make error message more helpful.
|
||||
|
||||
2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnus-html.el (gnus-html-schedule-image-fetching): Use
|
||||
|
|
|
@ -272,7 +272,7 @@ Errors out if the key exists already."
|
|||
(assert (< (registry-size db)
|
||||
(oref db :max-hard))
|
||||
nil
|
||||
"max-hard size limit reached")
|
||||
"registry max-hard size limit reached")
|
||||
|
||||
;; store the entry
|
||||
(puthash key entry (oref db :data))
|
||||
|
|
|
@ -91,6 +91,12 @@ cid: URL as the argument.")
|
|||
"Font for <s> elements."
|
||||
:group 'shr)
|
||||
|
||||
(defface shr-link '((t (:underline t)
|
||||
(:foreground "yellow")
|
||||
(:background "black")))
|
||||
"Font for <s> elements."
|
||||
:group 'shr)
|
||||
|
||||
;;; Internal variables.
|
||||
|
||||
(defvar shr-folding-mode nil)
|
||||
|
@ -591,6 +597,7 @@ START, and END. Note that START and END should be merkers."
|
|||
:help-echo (if title (format "%s (%s)" url title) url)
|
||||
:keymap shr-map
|
||||
url)
|
||||
(put-text-property start (point) 'face 'shr-link)
|
||||
(put-text-property start (point) 'shr-url url))
|
||||
|
||||
(defun shr-encode-url (url)
|
||||
|
|
|
@ -4313,8 +4313,7 @@ If optional arg MOVE is non-nil move point to end of field."
|
|||
(goto-char (bibtex-start-of-field bounds))
|
||||
(forward-char) ; leading comma
|
||||
(bibtex-delete-whitespace)
|
||||
(open-line 1)
|
||||
(forward-char)
|
||||
(insert "\n")
|
||||
(indent-to-column (+ bibtex-entry-offset
|
||||
bibtex-field-indentation))
|
||||
(re-search-forward "[ \t\n]*=" end-field)
|
||||
|
@ -4352,7 +4351,6 @@ column `bibtex-text-indentation' and continuation lines start here, too.
|
|||
If `bibtex-align-at-equal-sign' is non-nil, align equal signs, too."
|
||||
(interactive "*")
|
||||
(let ((pnt (copy-marker (point)))
|
||||
(end (copy-marker (bibtex-end-of-entry)))
|
||||
(beg (bibtex-beginning-of-entry)) ; move point
|
||||
bounds)
|
||||
(bibtex-delete-whitespace)
|
||||
|
@ -4364,8 +4362,7 @@ If `bibtex-align-at-equal-sign' is non-nil, align equal signs, too."
|
|||
(forward-char))
|
||||
(skip-chars-backward " \t\n")
|
||||
(bibtex-delete-whitespace)
|
||||
(open-line 1)
|
||||
(forward-char)
|
||||
(insert "\n")
|
||||
(indent-to-column bibtex-entry-offset)
|
||||
(goto-char pnt)))
|
||||
|
||||
|
|
|
@ -3915,14 +3915,18 @@ Both should not be used to define a buffer-local dictionary."
|
|||
(progn
|
||||
(open-line 1)
|
||||
(unless found (newline))
|
||||
(insert (if (fboundp 'comment-padright)
|
||||
;; Try and use the proper comment marker,
|
||||
;; e.g. ";;" rather than ";".
|
||||
(comment-padright comment-start
|
||||
(comment-add nil))
|
||||
comment-start)
|
||||
" " ispell-words-keyword)
|
||||
(if (> (length comment-end) 0)
|
||||
(insert (if comment-start
|
||||
(concat
|
||||
(if (fboundp 'comment-padright)
|
||||
;; Try and use the proper comment marker,
|
||||
;; e.g. ";;" rather than ";".
|
||||
(comment-padright comment-start
|
||||
(comment-add nil))
|
||||
comment-start)
|
||||
" ")
|
||||
"")
|
||||
ispell-words-keyword)
|
||||
(if (and comment-end (> (length comment-end) 0))
|
||||
(save-excursion
|
||||
(newline)
|
||||
(insert comment-end)))))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
2011-05-03 Paul Eggert <eggert@cs.ucla.edu>
|
||||
2011-05-04 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Arithmetic overflows now return float rather than wrapping around.
|
||||
(Bug#8611).
|
||||
|
@ -108,6 +108,11 @@
|
|||
|
||||
* fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
|
||||
|
||||
2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* xterm.c (x_set_frame_alpha): Do not set property on anything
|
||||
else than FRAME_X_OUTER_WINDOW (Bug#8608).
|
||||
|
||||
2011-05-02 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
|
||||
|
|
|
@ -454,11 +454,6 @@ x_set_frame_alpha (struct frame *f)
|
|||
double alpha_min = 1.0;
|
||||
unsigned long opac;
|
||||
|
||||
if (FRAME_X_DISPLAY_INFO (f)->root_window != FRAME_X_OUTPUT (f)->parent_desc)
|
||||
/* Since the WM decoration lies under the FRAME_OUTER_WINDOW,
|
||||
we must treat the former instead of the latter. */
|
||||
win = FRAME_X_OUTPUT (f)->parent_desc;
|
||||
|
||||
if (dpyinfo->x_highlight_frame == f)
|
||||
alpha = f->alpha[0];
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue