comparison lisp/ChangeLog @ 107793:d3738a1728c6

* verilog-mode.el (verilog-forward-sexp, verilog-calc-1): Support "disable fork" and "fork wait" multi word keywords, suggested by Steve Pearlmutter. (verilog-pretty-declarations): Support lineup of declarations in port lists. (verilog-skip-backward-comments, verilog-skip-forward-comment-p): fix bug for /* / comments (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws): Speed up and simplfy as this is never called with a bound. (verilog-pretty-declarations): Enhance to line up declarations inside a parameter list, suggested by Alan Morgan. (verilog-pretty-expr): Tune assignment regular expression match string for corner cases; also use markers instead of character number as indent changes the later. (verilog-type-keywords): Fix pulldown as missing keyword. (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE causing truncation of AUTOWIRE signals. Reported by Bruce Tennant. (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce Tennant. (verilog-keywords): (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE 1800-2009 keywords, including "global.".
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 06 Apr 2010 21:06:23 -0700
parents 35cd0eacff45
children c4daeb1eaaf1
comparison
equal deleted inserted replaced
107792:84df551e8c64 107793:d3738a1728c6
1 2010-04-07 Michael McNamara <mac@mail.brushroad.com>
2
3 * verilog-mode.el (verilog-forward-sexp, verilog-calc-1): Support
4 "disable fork" and "fork wait" multi word keywords, suggested by
5 Steve Pearlmutter.
6 (verilog-pretty-declarations): Support lineup of declarations in
7 port lists.
8 (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
9 fix bug for /* / comments
10 (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
11 Speed up and simplfy as this is never called with a bound.
12 (verilog-pretty-declarations): Enhance to line up declarations
13 inside a parameter list, suggested by Alan Morgan.
14 (verilog-pretty-expr): Tune assignment regular expression match
15 string for corner cases; also use markers instead of character
16 number as indent changes the later.
17
18 2010-04-07 Wilson Snyder <wsnyder@wsnyder.org>
19
20 * verilog-mode.el (verilog-type-keywords): Fix pulldown as missing
21 keyword.
22 (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
23 causing truncation of AUTOWIRE signals. Reported by Bruce
24 Tennant.
25 (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
26 AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
27 Tennant.
28 (verilog-keywords):
29 (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
30 1800-2009 keywords, including "global.".
31
1 2010-04-06 John Wiegley <jwiegley@gmail.com> 32 2010-04-06 John Wiegley <jwiegley@gmail.com>
2 33
3 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names 34 * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
4 appearing in buffer list (if a live buffer name matched a recentf 35 appearing in buffer list (if a live buffer name matched a recentf
5 file basename). Should use uniquify to offer a real solution. 36 file basename). Should use uniquify to offer a real solution.