comparison lisp/whitespace.el @ 29499:a293ec8516e0

Update whitespace.el - comment out the :version string, since it seems to have trouble with XEmacs 20.4 (user reported bug). Xemacs doesn't create group if this is present. Bug verified. Not yet determined the problem.
author Rajesh Vaidheeswarran <rv@gnu.org>
date Wed, 07 Jun 2000 19:04:57 +0000
parents 189f70e66cab
children 616755d12f93
comparison
equal deleted inserted replaced
29498:4b79925ce8fa 29499:a293ec8516e0
1 ;;; whitespace.el --- Warn about and clean bogus whitespaces in the file. 1 ;;; whitespace.el --- Warn about and clean bogus whitespaces in the file.
2 2
3 ;; Copyright (C) 1999 Free Software Foundation, Inc. 3 ;; Copyright (C) 1999-2000 Free Software Foundation, Inc.
4 4
5 ;; Author: Rajesh Vaidheeswarran <rv@gnu.org> 5 ;; Author: Rajesh Vaidheeswarran <rv@gnu.org>
6 ;; Keywords: convenience 6 ;; Keywords: convenience
7 7
8 ;; This file is part of GNU Emacs. 8 ;; This file is part of GNU Emacs.
85 85
86 (defgroup whitespace nil 86 (defgroup whitespace nil
87 "Check for and fix five different types of whitespaces in source code." 87 "Check for and fix five different types of whitespaces in source code."
88 ;; Since XEmacs doesn't have a 'convenience group, use the next best group 88 ;; Since XEmacs doesn't have a 'convenience group, use the next best group
89 ;; which is 'editing? 89 ;; which is 'editing?
90 :version "21.1" 90 ;; :version "21.1"
91 :group (if whitespace-running-emacs 'convenience 'editing)) 91 :group (if whitespace-running-emacs 'convenience 'editing))
92 92
93 (defcustom whitespace-check-leading-whitespace t 93 (defcustom whitespace-check-leading-whitespace t
94 "Flag to check leading whitespace." 94 "Flag to check leading whitespace."
95 :type 'boolean 95 :type 'boolean