aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-02-22 00:31:07 +0000
committerKarl Heuer1995-02-22 00:31:07 +0000
commit15d90a400bd975087a1a76c0284e657f86f26537 (patch)
treed091efd063cb3e31fc803ec032a0c478137c75d8
parent0b3c9cf195421a5766ca30691a93de9497b2f00b (diff)
downloademacs-15d90a400bd975087a1a76c0284e657f86f26537.tar.gz
emacs-15d90a400bd975087a1a76c0284e657f86f26537.zip
Use single semicolon in comments.
-rw-r--r--lisp/emulation/viper.el26
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index b0533fbfd61..906db9e367f 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -3,16 +3,16 @@
3;; and a venomous VI PERil. 3;; and a venomous VI PERil.
4;; Viper Is also a Package for Emacs Rebels. 4;; Viper Is also a Package for Emacs Rebels.
5 5
6;; Version: 2.71 6;; Version: 2.72
7;; Keywords: emulations 7;; Keywords: emulations
8;; Author: Michael Kifer <kifer@cs.sunysb.edu> 8;; Author: Michael Kifer <kifer@cs.sunysb.edu>
9 9
10;; LCD Archive Entry: 10;; LCD Archive Entry:
11;; viper|Michael Kifer|kifer@cs.sunysb.edu| 11;; viper|Michael Kifer|kifer@cs.sunysb.edu|
12;; A full-featured Vi emulator for GNU Emacs 19 and XEmacs 19| 12;; A full-featured Vi emulator for GNU Emacs 19 and XEmacs 19|
13;; 17-February-95|2.71|~/modes/viper.tar.Z| 13;; 19-February-95|2.72|~/modes/viper.tar.Z|
14 14
15(defconst viper-version "2.71 of February 17, 1995" 15(defconst viper-version "2.72 of February 19, 1995"
16 "The current version of Viper") 16 "The current version of Viper")
17 17
18;; This file is part of GNU Emacs. 18;; This file is part of GNU Emacs.
@@ -736,20 +736,20 @@ These buffers can be cycled through via :R and :P commands.")
736 736
737 737
738(defvar vip-heading-start 738(defvar vip-heading-start
739 (concat "^\\s-*(\\s-*defun\\s-\\|" ;; lisp 739 (concat "^\\s-*(\\s-*defun\\s-\\|" ; lisp
740 "^{\\s-*$\\|^[_a-zA-Z][^()]*[()].*{\\s-*$\\|" ;; C/C++ 740 "^{\\s-*$\\|^[_a-zA-Z][^()]*[()].*{\\s-*$\\|" ; C/C++
741 "^\\s-*class.*{\\|^\\s-*struct.*{\\|^\\s-*enum.*{\\|" 741 "^\\s-*class.*{\\|^\\s-*struct.*{\\|^\\s-*enum.*{\\|"
742 "^\\\\[sb][a-z]*{.*}\\s-*$\\|" ;; latex 742 "^\\\\[sb][a-z]*{.*}\\s-*$\\|" ; latex
743 "^@node\\|@table\\|^@m?enu\\|^@itemize\\|^@if\\|" ;; texinfo 743 "^@node\\|@table\\|^@m?enu\\|^@itemize\\|^@if\\|" ; texinfo
744 "^.+:-") ;; prolog 744 "^.+:-") ; prolog
745 "*Regexps for Headings. Used by \[\[ and \]\].") 745 "*Regexps for Headings. Used by \[\[ and \]\].")
746 746
747(defvar vip-heading-end 747(defvar vip-heading-end
748 (concat "^}\\|" ;; C/C++ 748 (concat "^}\\|" ; C/C++
749 "^\\\\end{\\|" ;; latex 749 "^\\\\end{\\|" ; latex
750 "^@end \\|" ;; texinfo 750 "^@end \\|" ; texinfo
751 ")\n\n[ \t\n]*\\|" ;; lisp 751 ")\n\n[ \t\n]*\\|" ; lisp
752 "\\.\\s-*$") ;; prolog 752 "\\.\\s-*$") ; prolog
753 "*Regexps to end Headings/Sections. Used by \[\].") 753 "*Regexps to end Headings/Sections. Used by \[\].")
754 754
755 755