aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation/viper-cmd.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-09-13 06:11:09 +0000
committerRichard M. Stallman <[email protected]>1997-09-13 06:11:09 +0000
commit454b1ed891065289b3a761ab59f13be6d9c71c64 (patch)
treefbb5c39a1f1a1f692d68b51759d971d725b3818a /lisp/emulation/viper-cmd.el
parent5cb58f82564a796979754ee59ec60cbf830f4f42 (diff)
(viper-smart-suffix-list): Fix customize type.
Diffstat (limited to 'lisp/emulation/viper-cmd.el')
-rw-r--r--lisp/emulation/viper-cmd.el20
1 files changed, 18 insertions, 2 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
index 33e6e685f3..53f12d7e34 100644
--- a/lisp/emulation/viper-cmd.el
+++ b/lisp/emulation/viper-cmd.el
@@ -1,6 +1,22 @@
;;; viper-cmd.el --- Vi command support for Viper
;; Copyright (C) 1997 Free Software Foundation, Inc.
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING. If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
;; Code
@@ -1785,7 +1801,7 @@ Undo previous insertion and inserts new."
(defcustom viper-smart-suffix-list
'("" "tex" "c" "cc" "C" "el" "java" "html" "htm" "pl" "P" "p")
- "*List of suffixes that Viper automatically tries to append to filenames ending with a `.'.
+ "*List of suffixes that Viper tries to append to filenames ending with a `.'.
This is useful when you the current directory contains files with the same
prefix and many different suffixes. Usually, only one of the suffixes
represents an editable file. However, file completion will stop at the `.'
@@ -1797,7 +1813,7 @@ corresponding file exists is selected. If no file exists for any of the
suffixes, the user is asked to confirm.
To turn this feature off, set this variable to nil."
- :type '(set string)
+ :type '(repeat string)
:group 'viper)