emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r106222: Increment c-version to 5.32.


From: Alan Mackenzie
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106222: Increment c-version to 5.32.2.
Date: Fri, 28 Oct 2011 16:16:02 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106222
committer: Alan Mackenzie <address@hidden>
branch nick: trunk
timestamp: Fri 2011-10-28 16:16:02 +0000
message:
  Increment c-version to 5.32.2.
modified:
  doc/misc/ChangeLog
  lisp/ChangeLog
  lisp/progmodes/cc-defs.el
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2011-10-23 16:08:19 +0000
+++ b/doc/misc/ChangeLog        2011-10-28 16:16:02 +0000
@@ -1,3 +1,15 @@
+2011-10-28  Alan Mackenzie  <address@hidden>
+
+       * cc-mode.texi (Indentation Commands): Mention "macros with semicolons".
+       (Other Special Indentations): Add an xref to "Macros with ;".
+       (Customizing Macros): Add stuff about syntax in macros.  Add an xref to
+       "Macros with ;".
+       (Macros with ;): New page.
+
+       * progmodes/cc-mode.texi (Movement Commands): Document
+       `c-defun-tactic'.  Document the new handling of nested scopes for
+       movement by defuns.
+
 2011-10-23  Michael Albinus  <address@hidden>
 
        Sync with Tramp 2.2.3.

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-10-28 15:24:05 +0000
+++ b/lisp/ChangeLog    2011-10-28 16:16:02 +0000
@@ -1,22 +1,25 @@
 2011-10-28  Alan Mackenzie  <address@hidden>
 
+       * progmodes/cc-defs.el (c-version).  -> 5.32.2.
+
+2011-10-28  Alan Mackenzie  <address@hidden>
+
        Amend the handling of c-beginning/end-of-defun in nested declaration
        scopes.
 
-       * cc-vars.el (c-defun-tactic): Move here from cc-langs.el.  Change it 
to a
-       defcustom.
-
-       * cc-mode.texi (Movement Commands): Document `c-defun-tactic'.  Document
-       the new handling of nested scopes for movement by defuns.
-
-       * cc-langs.el (c-defun-tactic): Move this variable to cc-vars.el.
+       * progmodes/cc-vars.el (c-defun-tactic): Move here from
+       cc-langs.el.  Change it to a defcustom.
+
+       * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
+       cc-vars.el.
        (c-nonlabel-token-2-key): New variable for change in cc-engine.el.
 
-       * cc-engine.el (c-beginning-of-statement-1): Prevent "class foo : bar"
-       being spuriously recognized as a label.
+       * progmodes/cc-engine.el (c-beginning-of-statement-1): Prevent
+       "class foo : bar" being spuriously recognized as a label.
 
-       * cc-cmds.el (c-narrow-to-most-enclosing-decl-block): Add parameter
-       `inclusive' (to include enclosing braces in the region).
+       * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
+       Add parameter `inclusive' (to include enclosing braces in the
+       region).
        (c-widen-to-enclosing-decl-scope): New function.
        (c-while-widening-to-decl-block): New macro.
        (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
@@ -34,39 +37,32 @@
        Amend to indent and fontify macros "which include their own semicolon"
        correctly, using the "virtual semicolon" mechanism.
 
-       * cc-defs.el: Update "virtual semicolon" comments.
+       * progmodes/cc-defs.el: Update "virtual semicolon" comments.
 
-       * cc-engine.el (c-crosses-statement-barrier-p): Recoded to scan one 
line at
-       at time rather than having \n and \r explicitly in c-stmt-delim-chars
+       * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Recoded
+       to scan one line at at time rather than having \n and \r
+       explicitly in c-stmt-delim-chars
        (for some modes, e.g. AWK).
        (c-forward-label): Amend for virtual semicolons.
        (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions
 
-       * cc-fonts.el (c-font-lock-declarations): Take account of the new C 
macros.
+       * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
+       of the new C macros.
 
-       * cc-langs.el (c-at-vsemi-p-fn, c-vsemi-status-unknown-p-fn): move to
-       earlier in the file.
+       * progmodes/cc-langs.el (c-at-vsemi-p-fn):
+       (c-vsemi-status-unknown-p-fn): move to earlier in the file.
        (c-opt-cpp-symbol, c-line-comment-start-regexp): New language variables.
        (c-opt-cpp-macro-define): Make into a full language variable.
        (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
        AWK Mode (including \n, \r) removed, no longer needed.
 
-       * cc-mode.el (c-mode, c++-mode, objc-mode): Invoke
-       c-make-macro-with-semi-re.  (Erroneously committed early, in previous
-       version, 5.259.)
+       * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode): Invoke
+       c-make-macro-with-semi-re.
 
-       * cc-vars.el (c-macro-with-semi-re, c-macro-names-with-semicolon): New
-       variables.
+       * progmodes/cc-vars.el (c-macro-with-semi-re):
+       (c-macro-names-with-semicolon): New variables.
        (c-make-macro-with-semi-re): New function
 
-       * cc-mode.texi (Indentation Commands): Mention "macros with semicolons".
-       (Other Special Indentations): Add an xref to "Macros with ;".
-       (Customizing Macros): Add stuff about syntax in macros.  Add an xref to
-       "Macros with ;".
-       (Macros with ;): New page.
-
-
-
 2011-10-28  Stefan Monnier  <address@hidden>
 
        * vc/log-edit.el: Fill empty field rather than adding new one.

=== modified file 'lisp/progmodes/cc-defs.el'
--- a/lisp/progmodes/cc-defs.el 2011-10-27 20:34:23 +0000
+++ b/lisp/progmodes/cc-defs.el 2011-10-28 16:16:02 +0000
@@ -93,7 +93,7 @@
 
 ;;; Variables also used at compile time.
 
-(defconst c-version "5.31.9"
+(defconst c-version "5.32.2"
   "CC Mode version number.")
 
 (defconst c-version-sym (intern c-version))


reply via email to

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