Mercurial > emacs
annotate lib-src/vcdiff @ 87591:4e970ff2f991
* progmodes/verilog-mode.el (top-level): Don't require compile.
(compilation-error-regexp-alist, compilation-last-buffer):
Define for compiler.
(verilog-insert-1): New function.
(verilog-insert-indices, verilog-generate-numbers): Doc fixes.
Use verilog-insert-1.
(verilog-surelint-off): Use next-error-last-buffer if bound.
Check compile buffer is live.
* progmodes/verilog-mode.el: Replace all instances of
string-to-int with string-to-number, insert-string with insert,
and read-input with read-string.
(top-level): No need to require imenu, reporter, dinotrace, vc,
font-lock when compiling. Always require compile. Relegate remaining
compatibility cruft to XEmacs. Don't require font-lock.
(verilog-version): Remove superfluous concat.
(dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
No need to define.
(verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
(verilog-font-lock-keywords, verilog-font-lock-keywords-1)
(verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
(verilog-startup-message-displayed): These are variables, not constants.
(verilog-batch-execute-func, verilog-auto-inst)
(verilog-auto-inst-param): Use mapc rather than mapcar.
(sigs-in, sigs-inout, sigs-out): Define for compiler rather than
actually defining.
(verilog-modi-get-decls, verilog-modi-get-sub-decls)
(verilog-modi-get-outputs, verilog-modi-get-inouts)
(verilog-modi-get-inputs, verilog-modi-get-wires)
(verilog-modi-get-regs, verilog-modi-get-assigns)
(verilog-modi-get-consts, verilog-modi-get-gparams)
(verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
(verilog-modi-get-sub-inputs): Move inline functions earlier in
the file.
(sigs-in, sigs-out): Don't declare multiple times.
(got-sig, got-rvalue, uses-delayed): Define for compiler with just
`defvar'.
(verilog-auto): Call dinotrace-unannotate-all only if bound.
(verilog-module-inside-filename-p): No need to wrap fboundp test
in condition-case.
(reporter-submit-bug-report): Autoload it.
(verilog-mark-defun): Call zmacs-activate-region only if bound.
(verilog-font-customize): Call customize-apropos only if bound.
(verilog-getopt-flags, verilog-auto-reeval-locals):
Use make-local-variable rather than make-variable-buffer-local.
(verilog-company, verilog-project, verilog-modi-cache-list):
Move make-variable-buffer-local calls to top-level.
(font-lock-defaults-alist): Don't define it.
(verilog-need-fld): Remove.
(verilog-font-lock-init): Don't set font-lock-defaults-alist.
(verilog-mode): Only call make-local-hook on XEmacs.
Set font-lock-defaults rather than using verilog-font-lock-init.
| author | Dan Nicolaescu <dann@ics.uci.edu> |
|---|---|
| date | Sat, 05 Jan 2008 10:23:27 +0000 |
| parents | 1f2482de3237 |
| children | 5714ff101fd9 f55f9811f5d7 |
| rev | line source |
|---|---|
|
12507
da322c027bf0
Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
Paul Eggert <eggert@twinsun.com>
parents:
5211
diff
changeset
|
1 #! /bin/sh |
| 928 | 2 # |
| 3 # Enhanced sccs diff utility for use with vc mode. | |
| 4 # This version is more compatible with rcsdiff(1). | |
| 5 # | |
|
64769
6358e3c6075c
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64083
diff
changeset
|
6 # Copyright (C) 1992, 1993, 1995, 1997, 2001, 2002, 2003, 2004, |
| 75348 | 7 # 2005, 2006, 2007 Free Software Foundation, Inc. |
| 36226 | 8 # |
| 9 # This file is part of GNU Emacs. | |
| 10 # | |
| 11 # GNU Emacs is free software; you can redistribute it and/or modify | |
| 12 # it under the terms of the GNU General Public License as published by | |
|
78257
1f2482de3237
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
13 # the Free Software Foundation; either version 3, or (at your option) |
| 36226 | 14 # any later version. |
| 15 # | |
| 16 # GNU Emacs is distributed in the hope that it will be useful, | |
| 17 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 # GNU General Public License for more details. | |
| 20 # | |
| 21 # You should have received a copy of the GNU General Public License | |
| 22 # along with GNU Emacs; see the file COPYING. If not, write to the | |
| 64083 | 23 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 24 # Boston, MA 02110-1301, USA. | |
| 36226 | 25 # |
| 928 | 26 |
| 27 DIFF="diff" | |
| 5211 | 28 usage="$0: Usage: vcdiff [--brief] [-q] [-r<sid1>] [-r<sid2>] [diffopts] sccsfile..." |
| 928 | 29 |
|
16804
0ba6599135d6
(PATH): Add /usr/xpg4/bin,
Paul Eggert <eggert@twinsun.com>
parents:
12507
diff
changeset
|
30 PATH=$PATH:/usr/ccs/bin:/usr/sccs:/usr/xpg4/bin # common SCCS hangouts |
|
4653
8e72792f2d18
Append /usr/ccs/bin and /usr/sccs to PATH.
Paul Eggert <eggert@twinsun.com>
parents:
3933
diff
changeset
|
31 |
|
69559
130314bad206
Use "echo" as a default for $echo, otherwise we'll execute $DIFF
Andr? Spiegel <spiegel@gnu.org>
parents:
68647
diff
changeset
|
32 echo="echo" |
|
16804
0ba6599135d6
(PATH): Add /usr/xpg4/bin,
Paul Eggert <eggert@twinsun.com>
parents:
12507
diff
changeset
|
33 sid1= sid2= |
| 928 | 34 |
| 35 for f | |
| 36 do | |
| 37 case $f in | |
| 38 -*) | |
| 39 case $f in | |
| 5211 | 40 --brief) |
| 41 DIFF=cmp;; | |
| 3933 | 42 -q) |
| 43 echo=:;; | |
| 928 | 44 -r?*) |
| 45 case $sid1 in | |
|
16804
0ba6599135d6
(PATH): Add /usr/xpg4/bin,
Paul Eggert <eggert@twinsun.com>
parents:
12507
diff
changeset
|
46 '') |
| 928 | 47 sid1=$f |
| 48 ;; | |
| 49 *) | |
| 50 case $sid2 in | |
| 51 ?*) echo "$usage" >&2; exit 2 ;; | |
| 52 esac | |
| 53 sid2=$f | |
| 54 ;; | |
| 55 esac | |
| 56 ;; | |
| 57 *) | |
| 58 options="$options $f" | |
| 59 ;; | |
| 60 esac | |
| 61 shift | |
| 62 ;; | |
| 63 *) | |
| 64 break | |
| 65 ;; | |
| 66 esac | |
| 67 done | |
| 68 | |
| 69 case $# in | |
| 70 0) | |
| 71 echo "$usage" >&2 | |
| 72 exit 2 | |
| 73 esac | |
| 74 | |
| 75 | |
| 76 rev1= rev2= status=0 | |
| 77 trap 'status=2; exit' 1 2 13 15 | |
| 78 trap 'rm -f $rev1 $rev2 || status=2; exit $status' 0 | |
| 79 | |
| 80 for f | |
| 81 do | |
| 82 s=2 | |
| 83 | |
| 84 case $f in | |
| 85 s.* | */s.*) | |
| 86 if | |
| 87 rev1=/tmp/geta$$ | |
| 88 get -s -p -k $sid1 "$f" > $rev1 && | |
| 89 case $sid2 in | |
| 90 '') | |
| 91 workfile=`expr " /$f" : '.*/s.\(.*\)'` | |
| 92 ;; | |
| 93 *) | |
| 94 rev2=/tmp/getb$$ | |
| 95 get -s -p -k $sid2 "$f" > $rev2 | |
| 96 workfile=$rev2 | |
| 97 esac | |
| 98 then | |
|
69559
130314bad206
Use "echo" as a default for $echo, otherwise we'll execute $DIFF
Andr? Spiegel <spiegel@gnu.org>
parents:
68647
diff
changeset
|
99 $echo $DIFF $options $rev1 $workfile >&2 |
| 928 | 100 $DIFF $options $rev1 $workfile |
| 101 s=$? | |
| 102 fi | |
| 103 ;; | |
| 104 *) | |
| 105 echo "$0: $f is not an SCCS file" >&2 | |
| 106 esac | |
| 107 | |
| 108 if test $status -lt $s | |
| 109 then status=$s | |
| 110 fi | |
| 111 done | |
| 52401 | 112 |
| 113 # arch-tag: 4344ba3a-bcbe-4f77-971c-f43c1606953a |
