# HG changeset patch # User Karl Heuer # Date 793413067 0 # Node ID 70977216c215abe996139f18130f57d07a58d019 # Parent 1d1db37a4bb7f512e936f846a7aae5b6c7464a94 Use single semicolon in comments. diff -r 1d1db37a4bb7 -r 70977216c215 lisp/emulation/viper.el --- 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 ;; 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 \[\].")