|
From: | Emacs bug Tracking System |
Subject: | bug#1431: marked as done (Error on http://www.gnu.org/software/emacs/elisp/html_node/Auto-Major-Mode.html) |
Date: | Wed, 26 Nov 2008 08:25:04 -0800 |
Your message dated Wed, 26 Nov 2008 11:16:32 -0500 with message-id <878wr6799b.fsf@cyd.mit.edu> and subject line Re: Error on http://www.gnu.org/software/emacs/elisp/html_node/Auto-Major-Mode.html has caused the Emacs bug report #1431, regarding Error on http://www.gnu.org/software/emacs/elisp/html_node/Auto-Major-Mode.html to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact don@donarmstrong.com immediately.) -- 1431: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1431 Emacs Bug Tracking System Contact don@donarmstrong.com with problems
--- Begin Message ---Subject: Error on http://www.gnu.org/software/emacs/elisp/html_node/Auto-Major-Mode.html Date: Wed, 26 Nov 2008 11:11:21 +0100 On this page there is the following code: (setq auto-mode-alist (append ;; File name (within directory) starts with a dot. '(("/\\.[^/]*\\'" . fundamental-mode) ;; File name has no dot. ("[^\\./]*\\'" . fundamental-mode) ;; File name ends in `.C'. ("\\.C\\'" . c++-mode)) auto-mode-alist)) But the rule for a file name without a dot should be: ("/[^\\./]*\\'" . fundamental-mode) -- Cecil Westerhof
--- End Message ---
--- Begin Message ---Subject: Re: Error on http://www.gnu.org/software/emacs/elisp/html_node/Auto-Major-Mode.html Date: Wed, 26 Nov 2008 11:16:32 -0500 > ;; File name has no dot. > ("[^\\./]*\\'" . fundamental-mode) > > But the rule for a file name without a dot should be: > ("/[^\\./]*\\'" . fundamental-mode) Fixed, thanks.
--- End Message ---
[Prev in Thread] | Current Thread | [Next in Thread] |