]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from emacs--rel--22
authorMiles Bader <miles@gnu.org>
Fri, 11 May 2007 04:44:30 +0000 (04:44 +0000)
committerMiles Bader <miles@gnu.org>
Fri, 11 May 2007 04:44:30 +0000 (04:44 +0000)
Patches applied:

 * emacs--rel--22  (patch 13)

   - Update from CVS

2007-05-10  Richard M. Stallman  <rms@gnu.org>

   * lisp/international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
   (iso-cvt-write-only): Likewise.

   * lisp/emacs-lisp/easy-mmode.el (define-minor-mode):
   Fix generated doc string.

   * lisp/startup.el (fancy-splash-text): Add URL of guided tour.
   Adjust horizontal and vertical whitespace.

   * lisp/progmodes/compile.el (compilation-handle-exit):
   Use run-hook-with-args to run compilation-finish-functions.

   * lisp/files.el (file-start-mode-alist): New variable.
   (magic-mode-regexp-match-limit): Doc fix.
   (set-auto-mode): Handle file-start-mode-alist.
   A little cleanup of structure.

2007-05-10  Richard M. Stallman  <rms@gnu.org>

   * lispref/keymaps.texi (Scanning Keymaps): Update where-is-internal example.

   * lispref/help.texi (Keys in Documentation): Add reference to
   Documentation Tips.

   * lispref/files.texi (Format Conversion): TO-FN gets three arguments.

   * lispref/modes.texi (Auto Major Mode): Document file-start-mode-alist.

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-743

1  2 
admin/FOR-RELEASE
lisp/ChangeLog
lisp/progmodes/compile.el
lispref/ChangeLog
lispref/files.texi

Simple merge
diff --cc lisp/ChangeLog
index e453a3984ae84af278de2dafec8d818f83d1c546,f751e6787c4c157aeecbfd5140162fe26847047f..5129fa474c6fdc18f246873b3096b8f1f3c6182e
@@@ -1,58 -1,10 +1,77 @@@
+ 2007-05-10  Richard Stallman  <rms@gnu.org>
++      * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
++      (iso-cvt-write-only): Likewise.
++
++      * emacs-lisp/easy-mmode.el (define-minor-mode):
++      Fix generated doc string.
++
++      * startup.el (fancy-splash-text): Add URL of guided tour.
++      Adjust horizontal and vertical whitespace.
++
++      * progmodes/compile.el (compilation-handle-exit):
++      Use run-hook-with-args to run compilation-finish-functions.
++
+       * files.el (file-start-mode-alist): New variable.
+       (magic-mode-regexp-match-limit): Doc fix.
+       (set-auto-mode): Handle file-start-mode-alist.
+       A little cleanup of structure.
 +2007-05-10  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
 +
 +      * man.el (Man-next-section): Don't consider the last line of the page
 +      as being part of any section.
 +
 +2007-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
 +
 +      * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
 +      can take any number of values.
 +
 +2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 +
 +      * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
 +      to the list of citation commands.
 +
 +2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 +
 +      * vc-hooks.el (vc-find-root): Stop searching when the user changes.
 +
 +2007-05-09  Edward O'Connor  <hober0@gmail.com>  (tiny change)
 +
 +      * progmodes/python.el (python-font-lock-keywords)
 +      (python-open-block-statement-p, python-mode): Add support for the new
 +      "with" keyword.
 +
 +2007-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
 +
 +      * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
 +      the exact opposite of diff-goto-source.
 +
 +      * emacs-lisp/advice.el (ad-special-forms): Remove.
 +      (ad-special-form-p): Use subr-arity.
 +
 +      * newcomment.el (comment-search-forward): Make sure we search forward.
 +      (comment-enter-backward): Try and distinguish the non-matching case at
 +      EOB from the non-matching case with a missing comment-end-skip for
 +      a 2-char comment ender.
 +      (comment-choose-indent): New function extracted from comment-indent.
 +      Improve the alignment algorithm.
 +      (comment-indent): Use it.
 +
 +      * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
 +      XML style Processing Instructions.
 +      (sgml-parse-tag-backward): Handle XML-style PIs.  Also ensure progress.
 +      (sgml-calculate-indent): Handle `pi' context.
 +
 +      * vc.el: Ensure that update-changelog issues an error when used with
 +      a backend that does not implement it.
 +      (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
 +      Remove `backend' argument.  Use expand-file-name.
 +      (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
 +
 +      * progmodes/python.el (python-end-of-block): Revert last change.
 +      (python-end-of-statement): Make sure we move *forward*.
 +
  2007-05-08  Richard Stallman  <rms@gnu.org>
  
        * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
Simple merge
index 5d340be7818dac77612d2a1b4cc1f9c341e7ea27,59430c5a82eabf5b5bf442c1f10814a86a666bb9..cb8243232862f39c5970e13dd03aa5180b129d72
@@@ -1,17 -1,7 +1,28 @@@
+ 2007-05-10  Richard Stallman  <rms@gnu.org>
++      * keymaps.texi (Scanning Keymaps): Update where-is-internal example.
++
++      * help.texi (Keys in Documentation): Add reference to
++      Documentation Tips.
++
++      * files.texi (Format Conversion): TO-FN gets three arguments.
++
+       * modes.texi (Auto Major Mode): Document file-start-mode-alist.
 +2007-05-10  Thien-Thi Nguyen  <ttn@gnuvola.org>
 +
 +      * elisp.texi (Top): Remove "Saving Properties" from detailed menu.
 +      * files.texi (Format Conversion): Expand intro; add menu.
 +      (Format Conversion Overview, Format Conversion Round-Trip)
 +      (Format Conversion Piecemeal): New nodes/subsections.
 +      * hooks.texi: Xref "Format Conversion" , not "Saving Properties".
 +      * text.texi (Text Properties): Remove "Saving Properties" from menu.
 +      (Saving Properties): Delete node/subsection.
 +
 +2007-05-07  Karl Berry  <karl@gnu.org>
 +
 +      * elisp.texi (EMACSVER): back to 22.
 +
  2007-05-06  Richard Stallman  <rms@gnu.org>
  
        * processes.texi (Accepting Output): Revert most of previous change.
Simple merge