# HG changeset patch # User Richard M. Stallman # Date 874131069 0 # Node ID 9a4cdbf423ea9c97445578927dff9981c7bcf073 # Parent 1e0f71fd673cbe02bf26b4214eda8f4164c17460 (viper-smart-suffix-list): Fix customize type. diff -r 1e0f71fd673c -r 9a4cdbf423ea lisp/emulation/viper-cmd.el --- a/lisp/emulation/viper-cmd.el Sat Sep 13 06:05:16 1997 +0000 +++ b/lisp/emulation/viper-cmd.el Sat Sep 13 06:11:09 1997 +0000 @@ -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 @@ (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 @@ 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)