Mercurial > emacs
annotate update-subdirs @ 33789:3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
(tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
Remove `bf' and `it' from `bold' and `italic' (they were wrong and
are (correctly) handled separately).
Remove `caption' and `footnote' from `citations': they contain text.
Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
(latex-skeleton-end-hook): New function.
(latex-mode): Use it.
(tex-start-tex-marker): Remove.
(tex-send-tex-command): Don't set tex-start-tex-marker.
(tex-error-parse-syntax-table): New var.
(tex-compilation-parse-errors): Use it.
Ignore tex-start-tex-marker. Don't bother with marker-position.
(tex-validate-buffer): Don't bother with marker-position.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 22 Nov 2000 21:36:44 +0000 |
parents | 3ede6c50d7f5 |
children | f440b9766968 |
rev | line source |
---|---|
25856 | 1 #!/bin/sh |
2 # Write into $1/subdirs.el a list of subdirs of directory $1. | |
3 cd $1 | |
4 for file in *; do | |
5 case $file in | |
25931
3ede6c50d7f5
also ignore CVS subdirs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25856
diff
changeset
|
6 *.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej) |
25856 | 7 ;; |
8 *) | |
9 if [ -d $file ]; then | |
10 subdirs="\"$file\" $subdirs" | |
11 fi | |
12 ;; | |
13 esac | |
14 done | |
15 | |
16 if [ "x$subdirs" = x ]; then | |
17 rm -f subdirs.el | |
18 else | |
19 echo ";; In load-path, after this directory should come | |
20 ;; certain of its subdirectories. Here we specify them." > subdirs.el | |
21 | |
22 echo "(normal-top-level-add-to-load-path '($subdirs))" >> subdirs.el | |
23 fi |