From 15d90a400bd975087a1a76c0284e657f86f26537 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 22 Feb 1995 00:31:07 +0000 Subject: [PATCH] Use single semicolon in comments. --- lisp/emulation/viper.el | 26 +++++++++++++------------- 1 file 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 @@ ;; 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| +;; 19-February-95|2.72|~/modes/viper.tar.Z| -(defconst viper-version "2.71 of February 17, 1995" +(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 @@ These buffers can be cycled through via :R and :P commands.") (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 \[\].") -- 2.39.5