changeset 10792:70977216c215

Use single semicolon in comments.
author Karl Heuer <kwzh@gnu.org>
date Wed, 22 Feb 1995 00:31:07 +0000
parents 1d1db37a4bb7
children b3ff28388976
files lisp/emulation/viper.el
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emulation/viper.el	Tue Feb 21 13:07:23 1995 +0000
+++ b/lisp/emulation/viper.el	Wed Feb 22 00:31:07 1995 +0000
@@ -3,16 +3,16 @@
 ;;		 and a venomous VI PERil.
 ;;		 Viper Is also a Package for Emacs Rebels.
 
-;;  Version:  2.71
+;;  Version:  2.72
 ;;  Keywords: emulations
 ;;  Author: Michael Kifer <kifer@cs.sunysb.edu>
 
 ;; LCD Archive Entry:
 ;; viper|Michael Kifer|kifer@cs.sunysb.edu|
 ;; A full-featured  Vi emulator for GNU Emacs 19 and XEmacs 19|
-;; 17-February-95|2.71|~/modes/viper.tar.Z|
-
-(defconst viper-version "2.71 of February 17, 1995"
+;; 19-February-95|2.72|~/modes/viper.tar.Z|
+
+(defconst viper-version "2.72 of February 19, 1995"
   "The current version of Viper")
 
 ;; This file is part of GNU Emacs.
@@ -736,20 +736,20 @@
 
 
 (defvar vip-heading-start 
-  (concat "^\\s-*(\\s-*defun\\s-\\|"			        ;; lisp
-	  "^{\\s-*$\\|^[_a-zA-Z][^()]*[()].*{\\s-*$\\|"	        ;; C/C++
+  (concat "^\\s-*(\\s-*defun\\s-\\|"			        ; lisp
+	  "^{\\s-*$\\|^[_a-zA-Z][^()]*[()].*{\\s-*$\\|"	        ; C/C++
 	  "^\\s-*class.*{\\|^\\s-*struct.*{\\|^\\s-*enum.*{\\|"
-	  "^\\\\[sb][a-z]*{.*}\\s-*$\\|"	    		;; latex
-	  "^@node\\|@table\\|^@m?enu\\|^@itemize\\|^@if\\|"	;; texinfo
-	  "^.+:-")			                        ;; prolog
+	  "^\\\\[sb][a-z]*{.*}\\s-*$\\|"	    		; latex
+	  "^@node\\|@table\\|^@m?enu\\|^@itemize\\|^@if\\|"	; texinfo
+	  "^.+:-")			                        ; prolog
   "*Regexps for Headings. Used by \[\[ and \]\].")
 
 (defvar vip-heading-end 
-  (concat "^}\\|"						;; C/C++
-	  "^\\\\end{\\|"					;; latex
-	  "^@end \\|"						;; texinfo
-	  ")\n\n[ \t\n]*\\|"					;; lisp
-	  "\\.\\s-*$")						;; prolog
+  (concat "^}\\|"						; C/C++
+	  "^\\\\end{\\|"					; latex
+	  "^@end \\|"						; texinfo
+	  ")\n\n[ \t\n]*\\|"					; lisp
+	  "\\.\\s-*$")						; prolog
       "*Regexps to end Headings/Sections. Used by \[\].")