Mercurial > emacs
annotate etc/echo.msg @ 103616:af77bf73dfe0
* verilog-mode.el (verilog-beg-of-statement)
(verilog-endcomment-reason-re): Support unique case and priority
case.
(verilog-basic-complete-re): Support localparam lineup.
(verilog-beg-of-statement-1): Fix for robustness, unique case.
(verilog-set-auto-endcomments): Fix for unique case, always_comb
commenting.
(verilog-leap-to-case-head): Now support *nested* unique &
priority case statements.
(verilog-auto-lineup): Make just declarations the default (as it
had been).
(verilog-leap-to-case-head): Support priority/unique case
statements.
(verilog-auto-lineup): Rework to give users radio buttons to
select the various styles of automatic lineup
(verilog-error-regexp-alist): Rework to support the XEmacs style
of error regular expressions from compilers, lint tools &
simulators. Note that GNU Emacs has made it impossible for a mode
to load such things.
(electric-verilog-terminate-line, verilog-indent-declaration)
(verilog-auto-wiure): Rework for radio button selection of
auto-lineup selection of specification of auto lineup.
(verilog-beg-of-statement-1): Redesign to support proper operation
in additional code, based on testing with auto-lineup.
(verilog-calculate-indent, assignments & declarations)
(verilog-backward-token): Enhance to support auto-lineup of
assignments & declarations.
(verilog-in-directive-p, verilog-at-struct-p): New function for
easy test of whether we are.
(verilog-pretty-declarations, verilog-pretty-expr): Massive rework
to support safe execution at almost anyline.
(verilog-calc-1): Properly support indenting deep inside generate
blocks.
(verilog-init-font) Remove definition & use of verilog-init-font,
as it is redundant with font-lock-defaults.
(verilog-mode): Alter the definition of verilog-font-lock-defualts
to avoid circular calls if syntax-ppss is a function (as is the
case now in 22.x GNU Emacs) as that function would sometimes call
itself, leading to (nearly) infinite recursion
(verilog-ovm-begin-re, verilog-ovm-end-re)
(verilog-ovm-statement-re, verilog-leap-to-head)
(verilog-backward-token): Add support for OVM macros. Some are
complete statements, and others open and close scopes like begin
and end.
(verilog-defun-level-not-generate-re, verilog-defun-level-re)
(verilog-defun-level-generate-only-re): Really fix the defun-list
compilation issue
(verilog-calc-1) (verilog-beg-of-statement): Enhance support for
coverpoint, constraint and cross statements
(verilog-defun-level-list, verilog-generate-defun-level-list)
(verilog-all-defun-level-list): Redo these specifications - it is
too hard to support eval-when compile aggregation of lists also
built at when-compile time.
(verilog-defun-level-list): Place defconsts of variables used in
building regular expressions which are built in eval-when-compile
bodies in the same eval-when-compile body to facilitate compile
without load.
(verilog-beg-block-re-ordered): Support indenting
virtual/protected tasks and functions.
(verilog-defun-level-list,verilog-in-generate-region-p)
(verilog-backward-ws&directives, verilog-calc-1): Speed up
indentation of some module items (generate items).
(verilog-forward-sexp, verilog-leap-to-head): Support stepping
across virtual/protected tasks and functions.
* verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort): Allow
sorting AUTOARG lists. Suggested by Andrea Fedeli.
(verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
in concatenations. Reported by Yishay Belkind.
(verilog-auto-ascii-enum): Support one-hot state machines in
AUTOASCIIENUM. Suggested by Lloyd Gomez.
(verilog-auto-inst, verilog-auto-inst-port): Include interface
modport in AUTOINST and add vl-modport for users. Reported by
David Rogoff.
(verilog-auto-inout-module, verilog-auto-inst)
(verilog-decls-get-interfaces, verilog-insert-definition)
(verilog-insert-one-definition, verilog-read-decls)
(verilog-read-sub-decls, verilog-read-sub-decls-sig)
(verilog-sig-modport, verilog-signals-combine-bus)
(verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
Suggested by David Rogoff.
(verilog-repair-open-comma): Fix non-insertion of comma when
`DEFINE occurs in V2K argument list. Reported by Lane Brooks.
(verilog-make-width-expression): Simplify [A-1:0] expression
widths to just {A{1'b0}}.
(verilog-mode): Cleanup checkdoc warnings.
(verilog-auto-inout-module, verilog-signals-matching-dir-re): Add
third optional regexp to AUTOINOUTMODULE to allow selecting only
inputs/outputs or data type. Suggested by Vasu Kandadi.
(next-error-last-buffer): Fix byte-compiler warning.
(verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
(verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
or shell command text during AUTO expansion. Suggested by Tad
Truex.
(verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
(verilog-read-sub-decls-sig, verilog-symbol-detick-text): Fix
dotted nets {a.b,c.d} and excaped identifiers being mis-included
in AUTOINOUT. Reported by Matthew Lovell.
(verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
causing use of <= assignments. Reported by Alex Reed.
(verilog-read-decls): Fix triand, trior, wand, wor to be
recognized by AUTOWIRE. Reported by Spencer Isaacson.
(verilog-extended-complete-re): Support import "DPI-C" functions.
(verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
y[a+1:a+1]" to not include a in reset list. Reported by Dan
Dever.
(verilog-insert-date, verilog-insert-year)
(verilog-sk-header-tmpl): Fix verilog-header inserting error on
Windows systems. Reported by Michael Potts.
(verilog-read-module-name): Fix AUTOINST when the child module
declaration's name is a tick define. Reported by Elliot Mednick.
(verilog-read-decls): Fix V2K parameter bit subscripts getting
passed to next parameter's definition. Reported by Bruce T.
(verilog-read-decls): Fix detecting "parameter int" when using
AUTOINSTPARAM. Reported by Bruce T.
(verilog-goto-defun): Fix goto not finding modules unless first
perform a verilog-auto expansion. Suggested by Lawrence Butcher.
(verilog-mode): Expand -f flag arguments on entry to mode so
verilog-goto-defun will work. Reported by Lawrence Butcher.
(verilog-getopt): Expand environment variables in -f file
arguments. Suggested by Lawrence Butcher.
(verilog-set-define): Fix "Symbol's value as variable is void"
when reading enumerations.
(verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
Suggested by Stephen Peltan.
(verilog-read-defines): Fix reading of enumerations in include
files. Reported by Steve Peltan.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sun, 28 Jun 2009 17:52:45 +0000 |
parents | 02e2382f5e8a |
children |
rev | line source |
---|---|
76188
02e2382f5e8a
Add similar copyright disclaimer to that used on
Glenn Morris <rgm@gnu.org>
parents:
25853
diff
changeset
|
1 The Free Software Foundation claims no copyright on this file, taken |
02e2382f5e8a
Add similar copyright disclaimer to that used on
Glenn Morris <rgm@gnu.org>
parents:
25853
diff
changeset
|
2 from a posting to the public newsgroup net.sources. |
02e2382f5e8a
Add similar copyright disclaimer to that used on
Glenn Morris <rgm@gnu.org>
parents:
25853
diff
changeset
|
3 |
25853 | 4 Path: mit-amt!mit-eddie!think!harvard!seismo!gatech!akgua!whuxlm!whuxl!houxm!ihnp4!stolaf!umn-cs!herndon |
5 From: herndon@umn-cs.UUCP | |
6 Newsgroups: net.sources | |
7 Subject: GNU Echo, Release 1 | |
8 Message-ID: <1600001@umn-cs.UUCP> | |
9 Date: 28 Oct 85 18:23:00 GMT | |
10 | |
11 | |
12 /* Written 12:22 pm Oct 28, 1985 by umn-cs!herndon in umn-cs:net.jokes */ | |
13 /* ---------- "GNU Echo, Release 1" ---------- */ | |
14 | |
15 | |
16 | |
17 | |
18 GNUecho(1) UNIX Programmer's Manual GNUecho(1) | |
19 | |
20 | |
21 | |
22 NAME | |
23 echo - echo arguments | |
24 | |
25 SYNOPSIS | |
26 echo [ options ] ... | |
27 | |
28 DESCRIPTION | |
29 _^HE_^Hc_^Hh_^Ho writes its arguments separated by blanks and terminated | |
30 by a newline on the standard output. Options to filter and | |
31 redirect the output are as follows: | |
32 | |
33 -2 generate rhyming couplets from keywords | |
34 | |
35 -3 generate Haiku verse from keywords | |
36 | |
37 -5 generate limerick from keywords | |
38 | |
39 -a convert ASCII to ASCII | |
40 | |
41 -A disambiguate sentence structure | |
42 | |
43 -b generate bureaucratese equivalent (see -x) | |
44 | |
45 -B issue equivalent C code with bugs fixed | |
46 | |
47 -c simplify/calculate arithmetic expression(s) | |
48 | |
49 -C remove copyright notice(s) | |
50 | |
51 -d define new echo switch map | |
52 | |
53 -D delete all ownership information from system files | |
54 | |
55 -e evaluate lisp expression(s) | |
56 | |
57 -E convert ASCII to Navajo | |
58 | |
59 -f read input from file | |
60 | |
61 -F transliterate to french | |
62 | |
63 -g generate pseudo-revolutionary marxist catch-phrases | |
64 | |
65 -G prepend GNU manifesto | |
66 | |
67 -h halt system (reboot suppressed on Suns, Apollos, and | |
68 VAXen, not supported on NOS-2) | |
69 | |
70 -i emulate IBM OS/VU (recursive universes not supported) | |
71 | |
72 -I emulate IBM VTOS 3.7.6 (chronosynclastic infundibulae | |
73 supported with restrictions documented in IBM VTOS | |
74 | |
75 | |
76 | |
77 Printed 10/28/85 18 January 1983 1 | |
78 | |
79 | |
80 | |
81 | |
82 | |
83 | |
84 GNUecho(1) UNIX Programmer's Manual GNUecho(1) | |
85 | |
86 | |
87 | |
88 Reference Manual rev 3.2.6) | |
89 | |
90 -J generate junk mail | |
91 | |
92 -j justify text (see -b option) | |
93 | |
94 -k output "echo" software tools | |
95 | |
96 -K delete privileged accounts | |
97 | |
98 -l generate legalese equivalent | |
99 | |
100 -L load echo modules | |
101 | |
102 -M generate mail | |
103 | |
104 -N send output to all reachable networks (usable with -J, | |
105 -K, -h options) | |
106 | |
107 -n do not add newline to the output | |
108 | |
109 -o generate obscene text | |
110 | |
111 -O clean up dirty language | |
112 | |
113 -p decrypt and print /etc/passwd | |
114 | |
115 -P port echo to all reachable networks | |
116 | |
117 -P1 oolcay itay | |
118 | |
119 -q query standard input for arguments | |
120 | |
121 -r read alternate ".echo" file on start up | |
122 | |
123 -R change root password to "RMS" | |
124 | |
125 -s suspend operating system during output (Sun and VAX BSD | |
126 4.2 only) | |
127 | |
128 -S translate to swahili | |
129 | |
130 -T emulate TCP/IP handler | |
131 | |
132 -t issue troff output | |
133 | |
134 -u issue unix philosophy essay | |
135 | |
136 -v generate reverberating echo | |
137 | |
138 -V print debugging information | |
139 | |
140 | |
141 | |
142 | |
143 Printed 10/28/85 18 January 1983 2 | |
144 | |
145 | |
146 | |
147 | |
148 | |
149 | |
150 GNUecho(1) UNIX Programmer's Manual GNUecho(1) | |
151 | |
152 | |
153 | |
154 -x decrypt DES format messages (NSA secret algorithm CX | |
155 3.8, not distributed outside continental US) | |
156 | |
157 _^HE_^Hc_^Hh_^Ho is useful for producing diagnostics in shell programs | |
158 and for writing constant data on pipes. To send diagnostics | |
159 to the standard error file, do `echo ... 1>&2'. | |
160 | |
161 AUTHOR | |
162 Richard M. Stallman | |
163 | |
164 | |
165 | |
166 | |
167 | |
168 | |
169 | |
170 | |
171 | |
172 | |
173 | |
174 | |
175 | |
176 | |
177 | |
178 | |
179 | |
180 | |
181 | |
182 | |
183 | |
184 | |
185 | |
186 | |
187 | |
188 | |
189 | |
190 | |
191 | |
192 | |
193 | |
194 | |
195 | |
196 | |
197 | |
198 | |
199 | |
200 | |
201 | |
202 | |
203 | |
204 | |
205 | |
206 | |
207 | |
208 | |
209 Printed 10/28/85 18 January 1983 3 | |
210 |