From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.bugs Subject: Re: Show do not allow a hide Date: Sat, 06 Apr 2002 13:42:31 +0200 Organization: The Church of Emacs Sender: bug-gnu-emacs-admin@gnu.org Message-ID: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1018093522 28255 127.0.0.1 (6 Apr 2002 11:45:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 6 Apr 2002 11:45:22 +0000 (UTC) Cc: "'bug-gnu-emacs@gnu.org'" Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16todF-0007LU-00 for ; Sat, 06 Apr 2002 13:45:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16tod9-0006Dy-00; Sat, 06 Apr 2002 06:45:15 -0500 Original-Received: from sheridan.dina.kvl.dk ([130.225.40.227]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16toaZ-00069O-00 for ; Sat, 06 Apr 2002 06:42:35 -0500 Original-Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by sheridan.dina.kvl.dk (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id NAA30943; Sat, 6 Apr 2002 13:42:33 +0200 Original-Received: (from abraham@localhost) by zuse.dina.kvl.dk (8.9.3+Sun/8.9.3) id NAA18260; Sat, 6 Apr 2002 13:42:31 +0200 (MEST) X-Authentication-Warning: zuse.dina.kvl.dk: abraham set sender to abraham@dina.kvl.dk using -f Original-To: Mattias Fredsberg X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM|8MBp/ In-Reply-To: Mattias Fredsberg's message of "Thu, 21 Mar 2002 11:23:48 +0100" Original-Lines: 34 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.1 (sparc-sun-solaris2.8) Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.8 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:443 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:443 Hi, Thanks for the report. I have applied this patch to CVS, which should fix the problem. 2002-04-06 Per Abrahamsen * progmodes/cc-vars.el (c-block-comment-prefix): Specify :value for customization type. Reported by Mattias Fredsberg . *** cc-vars.el.~1.19.~ Tue Feb 5 14:47:06 2002 --- cc-vars.el Sat Apr 6 13:36:03 2002 *************** *** 291,297 **** more lines for the first time; otherwise the appropriate prefix is adapted from the comment. This variable is not used for C++ line style comments." ! :type 'string :group 'c) (defcustom-c-stylevar c-comment-prefix-regexp --- 291,301 ---- more lines for the first time; otherwise the appropriate prefix is adapted from the comment. This variable is not used for C++ line style comments." ! ;; We need to specify a :value to prevent `defcustom-c-stylevar' from ! ;; giving it an invalid value. Perhaps `defcustom-c-stylevar' ! ;; should evaluate the value first? ! ;; Per Abrahamsen 2002-04-06. ! :type '(string :value "* ") :group 'c) (defcustom-c-stylevar c-comment-prefix-regexp