emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/ChangeLog,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/ChangeLog,v
Date: Sun, 24 Feb 2008 10:09:15 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     08/02/24 10:09:07

Index: lisp/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.12882
retrieving revision 1.12883
diff -u -b -r1.12882 -r1.12883
--- lisp/ChangeLog      23 Feb 2008 23:35:23 -0000      1.12882
+++ lisp/ChangeLog      24 Feb 2008 10:08:56 -0000      1.12883
@@ -1,3 +1,186 @@
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * dired.el (dired-mark-prompt): Don't count/display the t element.
+       Reported by Carsten Blaauw <address@hidden>.
+
+2008-02-24  Dan Nicolaescu  <address@hidden>
+
+       * progmodes/verilog-mode.el (eval-when-compile): Don't define
+       add-submenu.
+       (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
+       Remove.  Move contents to the only use ...
+       (verilog-menu): ... here.
+       (verilog-statement-menu): Remove.  Move contents to the only use ...
+       (verilog-stmt-menu): ... here.
+       (verilog-mark-defun): Simply call mark-defun for emacs.
+       (occur-pos-list): Declare for byte compiler.
+       (mode-popup-menu): Don't defvar.
+       (verilog-add-statement-menu): Remove.
+       (verilog-mode-hook): Don't add verilog-add-statement-menu.
+       (verilog-mode): Call easy-menu-add and set mode-popup-menu for
+       XEmacs.
+
+2008-02-24  Michael McNamara  <address@hidden>
+
+       * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
+       conditional.
+       (verilog-font-grouping-keywords-face): Make the begin..end
+       keywords standout more than other verilog keywords.
+        (verilog-type-font-keywords): Move the begin..end out of this list
+       to facilitate making them to (potentially) stand out more.
+       (verilog-backward-token): Fix indent of bare always{_*}?, initial,
+       function & task blocks.
+        (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
+       initial, function & task blocks.
+       (verilog-forward-sexp): Handle the new "disable fork" statement of
+       IEEE-1800 Verilog.
+        (verilog-beg-block-re-ordered): Handle the new "disable fork"
+       statement of IEEE-1800 Verilog.
+        (verilog-calc-1): Handle the new "disable fork" statement of
+       IEEE-1800 Verilog.
+        (verilog-disable-fork-re): Add const to help handle the new
+       "disable fork" statement of IEEE-1800 Verilog.
+       (verilog-declaration-core-re): Add port directions by themselves,
+       with no qualification, as base item of a declaration.
+        (verilog-pretty-declarations): Add new flag to ask it to refrain
+       from printing to the message buffer.
+        (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
+       printing to the message buffer.  Improve handling of the many
+       types of expression line up.
+        (verilog-just-one-space): Remove printing of an empty message.
+        (verilog-get-lineup-indent): Rework to support the better handling
+       of expression lineup for verilog-pretty-expr.
+        (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
+
+2008-02-24  Alan Mackenzie  <address@hidden>
+
+       * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
+       yesterday's commit.
+
+2008-02-24  Nick Roberts  <address@hidden>
+
+       * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
+       to mouse-set-point in buffers that aren't associated with files.
+
+       * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
+
+2008-02-24  Alan Mackenzie  <address@hidden>
+
+       Set of changes so that "obtrusive" syntactic elements in a
+       C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
+       unmatched paren) don't interact syntactically with stuff outside
+       the CPP line.
+
+       * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
+       Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
+       off-by-one bug.
+       (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
+       a bit of refactoring.
+       (c-awk-extend-and-syntax-tablify-region): Takes some of the
+       functionality of c-awk-advise-fl-for-awk-region, which has been
+       refactored away.
+
+       * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
+       (c-clear-char-property-with-value): New function and macro which
+       remove text-properties `equal' to a supplied value.
+
+       * progmodes/cc-engine.el: Comment about text properties amended.
+
+       * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
+       parens around "error\\|warning".
+
+       * progmodes/cc-langs.el (c-get-state-before-change-function)
+       (c-before-font-lock-function, c-anchored-cpp-prefix):
+       New language variables.
+       (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
+
+       * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
+       syntax-table text properties.
+       (c-common-init): Call language specific before/after-change
+       functions at mode initialisation.
+       (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
+       (c-extend-region-for-CPP, c-neutralize-CPP-line)
+       (c-neutralize-syntax-in-CPP): New functions.
+       (c-before-change, c-after-change): Call the new language specific
+       change functions defined in cc-langs.el.
+       (c-advise-fl-for-region): New macro.
+       (awk-mode): Remove AWK specific stuff which has been refactored
+       into language independent stuff.
+
+2008-02-24  Nick Roberts  <address@hidden>
+
+       * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
+       (gdb): (Re)set gdb-flush-pending-output to nil here...
+       (gdb-init-1): ...instead of here (before gdb-prompt).
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
+       Recognize ''' just like any other char-constant.
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * vc-hooks.el (vc-find-root): Remove initial loop because it's not
+       careful enough.  Detect the uid-change all within the main loop.
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * hilit-chg.el (highlight-save-buffer-state): New macro.
+       (highlight-save-buffer-state, hilit-chg-set-face-on-change)
+       (hilit-chg-clear): Use it to preserve the modified-p flag.
+       (highlight-changes-rotate-faces): Don't mess with the undo-list.
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * font-lock.el (font-lock-set-defaults): Unset previously set variables
+       when needed.
+
+2008-02-24  ,AF(Bvar Arnfj,Av(Br,Ap(B Bjarmason  <address@hidden>  (tiny 
change)
+
+       * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
+       from gnus-button-url-regexp.
+
+2008-02-24  Eli Zaretskii  <address@hidden>
+
+       * progmodes/compile.el (compilation-next-error): Doc fix.
+       (compilation-find-file): Doc fix.
+
+2008-02-24  Glenn Morris  <address@hidden>
+
+       * net/net-utils.el (ipconfig-program, ipconfig-program-options):
+       Add obsolete aliases to the old names.
+
+2008-02-24  Richard Stallman  <address@hidden>
+
+       * net/net-utils.el (ifconfig): Rename from ipconfig.
+       (ipconfig): Alias to ifconfig.
+       (ifconfig-program): Rename from ipconfig-program.
+       (ifconfig-program-options): Rename from ipconfig-program-options.
+
+2008-02-24  Michael McNamara  <address@hidden>
+
+       * progmodes/verilog-mode.el (verilog-declaration-core-re):
+       Add port directions by themselves, with no qualification, as base
+       item of a declaration.
+       (verilog-pretty-declarations): Add new flag that inhibits printing
+       to the message buffer.
+       (verilog-pretty-expr): Add new flag that inhibits printing to the
+       message buffer.  Improve handling of the many types of expression
+       line up.
+       (verilog-just-one-space): Don't print an empty message.
+       (verilog-get-lineup-indent): Rework to support the better handling
+       of expression lineup for verilog-pretty-expr.
+       (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
+       (verilog-mode-version, verilog-mode-release-date): Update.
+
+2008-02-24  Stefan Monnier  <address@hidden>
+
+       * subr.el (cancel-change-group): Don't move point.
+
 2008-02-23  Markus Triska  <address@hidden>
 
        * linum.el (linum-after-config): Update all visible windows.




reply via email to

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