emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111717: Merge from emacs-24; up to r


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111717: Merge from emacs-24; up to r111242
Date: Sat, 09 Feb 2013 17:56:25 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111717 [merge]
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-02-09 17:56:25 -0800
message:
  Merge from emacs-24; up to r111242
modified:
  doc/emacs/ChangeLog
  doc/emacs/trouble.texi
  doc/lispref/ChangeLog
  doc/lispref/keymaps.texi
  etc/NEWS
  etc/TODO
  lisp/ChangeLog
  lisp/gnus/ChangeLog
  lisp/mail/emacsbug.el
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2013-02-09 12:52:01 +0000
+++ b/doc/emacs/ChangeLog       2013-02-10 01:56:25 +0000
@@ -1,3 +1,7 @@
+2013-02-10  Glenn Morris  <address@hidden>
+
+       * trouble.texi (Checklist): Update bug keybinding.
+
 2013-02-09  Eli Zaretskii  <address@hidden>
 
        * msdog.texi (Text and Binary): Delete the description of

=== modified file 'doc/emacs/trouble.texi'
--- a/doc/emacs/trouble.texi    2013-01-19 22:48:47 +0000
+++ b/doc/emacs/trouble.texi    2013-02-10 01:56:25 +0000
@@ -662,7 +662,7 @@
 (If you want to suggest an improvement or new feature, use the same
 address.)  If you cannot send mail from inside Emacs, you can copy the
 text of your report to your normal mail client (if your system
-supports it, you can type @kbd{C-c m} to have Emacs do this for you)
+supports it, you can type @kbd{C-c M-i} to have Emacs do this for you)
 and send it to that address.  Or you can simply send an email to that
 address describing the problem.
 

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-02-09 12:52:01 +0000
+++ b/doc/lispref/ChangeLog     2013-02-10 01:56:25 +0000
@@ -1,3 +1,7 @@
+2013-02-10  Glenn Morris  <address@hidden>
+
+       * keymaps.texi (Creating Keymaps): Update make-keymap result.
+
 2013-02-09  Eli Zaretskii  <address@hidden>
 
        * modes.texi (%-Constructs): Remove the description of %t.

=== modified file 'doc/lispref/keymaps.texi'
--- a/doc/lispref/keymaps.texi  2013-02-08 17:23:24 +0000
+++ b/doc/lispref/keymaps.texi  2013-02-10 01:56:25 +0000
@@ -327,10 +327,12 @@
 event.  The argument @var{prompt} specifies a
 prompt string, as in @code{make-sparse-keymap}.
 
address@hidden This example seems kind of pointless, but I guess it serves
address@hidden to contrast the result with make-sparse-keymap above.
 @example
 @group
 (make-keymap)
-    @result{} (keymap #^[t nil nil nil @dots{} nil nil keymap])
+    @result{} (keymap #^[nil nil keymap nil nil nil @dots{}])
 @end group
 @end example
 

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-02-09 12:52:01 +0000
+++ b/etc/NEWS  2013-02-10 01:56:25 +0000
@@ -436,6 +436,11 @@
 ** Using "unibyte: t" in Lisp source files is obsolete.
 Use "coding: raw-text" instead.
 
+** In the buffer made by `M-x report-emacs-bug', the `C-c m' binding
+has been changed to `C-c M-i' (`report-emacs-bug-insert-to-mailer').
+The previous binding, introduced in Emacs 24.1, was a mistake, because
+`C-c LETTER' bindings are reserved for user customizations.
+
 ** Internationalization
 
 *** New language environment: Persian.
@@ -1262,9 +1267,10 @@
 (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and
 `mailclient-send-it' on Windows).
 
-*** Typing C-c m in the buffer made by M-x report-emacs-bug transfers
-the report to your desktop's preferred mail client, if there is one.
-This uses either the "xdg-email" utility, or Mac OS's "open" command.
+*** Typing `C-c m' in the buffer made by `M-x report-emacs-bug'
+transfers the report to your desktop's preferred mail client, if there
+is one.  This uses either the "xdg-email" utility, or Mac OS's "open"
+command.
 
 *** See Changes in Specialized Modes and Packages for SMTPmail changes
 and Mail mode changes

=== modified file 'etc/TODO'
--- a/etc/TODO  2013-02-08 17:23:24 +0000
+++ b/etc/TODO  2013-02-10 01:56:25 +0000
@@ -399,14 +399,6 @@
   Check the assignments file for other packages which might go in and
   have been missed.
 
-** Possibly install python-mode in place of python.el, or combine the two.
-Someone needs to do the work of figuring out who all the non-trivial
-python-mode.el contributors are and getting assignments.
-http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02156.html
-http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02201.html
-http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02489.html
-http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02234.html
-
 ** Make keymaps a first-class Lisp object (this means a rewrite of
   keymap.c).  What should it do apart from being opaque ?
   multiple inheritance ?  faster where-is ?  no more fix_submap_inheritance ?
@@ -416,7 +408,7 @@
   an example how to do part of this; see the XMenu* functions on msdos.c.
 
 ** Implement popular parts of the rest of the CL functions as compiler
-  macros in cl-macs.
+  macros in cl-macs.  [Is this still relevant now that cl-lib exists?]
 
 ** Make compiler warnings about functions that might be undefined at run time
  smarter, so that they know which files are required by the file being
@@ -457,7 +449,8 @@
 
 ** Allow unknown image types to be rendered via an external program
   converting them to, say, PBM (in the same way as PostScript?). [does
-  doc-view.el do this, or could it be extended to do this?]
+  doc-view.el do this, or could it be extended to do this?
+  Does ImageMagick obsolete this idea?]
 
 ** Allow displaying an X window from an external program in a buffer,
   e.g. to render graphics from Java applets.  [gerd and/or wmperry
@@ -613,6 +606,7 @@
      There was a special trick to detect mouse press in the lower right
      corner and track mouse movements, but this did not work well, and was
      not scalable to the new Lion "resize on every window edge" behavior.
+     [As of trunk r109635, 2012-08-15, the event loop no longer polls.]
 
 **** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back
 up on top of all others
@@ -719,12 +713,6 @@
 *** Decide what to do with some uncommitted imagemagick support
 functions for image size etc.
 
-*** Test with more systems.
-Tested on Fedora 12, 14, and the libmagick that ships with it.
-I also tried using an ImageMagick compiled from their SVN, in
-parallel with the one packaged by Fedora, it worked well.
-Ubuntu 8.04 was tested, but it seems it ships a broken ImageMagick.
-
 ** nxml mode
 
 *** High priority

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-10 01:49:48 +0000
+++ b/lisp/ChangeLog    2013-02-10 01:56:25 +0000
@@ -1,9 +1,13 @@
+2013-02-10  Chong Yidong  <address@hidden>
+
+       * mail/emacsbug.el (report-emacs-bug): Change binding of
+       report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
+
 2013-02-09  Jay Belanger  <address@hidden>
 
        * calc/calc.el (calc-allow-units-as-numbers): New variable.
        * calc/calc-units.el (calc-convert-units): Use new variable.
 
-
 2013-02-09  Eli Zaretskii  <address@hidden>
 
        * subr.el (buffer-file-type, default-buffer-file-type): Remove.

=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2013-02-10 00:51:12 +0000
+++ b/lisp/gnus/ChangeLog       2013-02-10 01:56:25 +0000
@@ -1,7 +1,7 @@
 2013-02-10  Katsumi Yamaoka  <address@hidden>
 
        * nnir.el ("nnir"): Add 'virtual ability to nnir backend.  (This was
-       done in 2012-07-22 by Andrew Cohen, but I reverted it mistakenlly.)
+       done in 2012-07-22 by Andrew Cohen, but I reverted it mistakenly.)
 
 2013-02-07  Gábor Vida  <address@hidden>  (tiny change)
 

=== modified file 'lisp/mail/emacsbug.el'
--- a/lisp/mail/emacsbug.el     2013-01-02 16:13:04 +0000
+++ b/lisp/mail/emacsbug.el     2013-02-10 01:56:25 +0000
@@ -323,7 +323,7 @@
     (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
     (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug)
     (if can-insert-mail
-       (define-key (current-local-map) "\C-cm"
+       (define-key (current-local-map) "\C-c\M-i"
          'report-emacs-bug-insert-to-mailer))
     (setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc)
          report-emacs-bug-send-hook (get mail-user-agent 'hookvar))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]