# New Ticket Created by  Jim McKim 
# Please include the string:  [perl #36841]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=36841 >


The file pir-mode.el defines an editing mode for emacs/xemacs that makes 
thing very nice when editing imcc sources. There is a two line comment 
near the beginning of the file that describe how best to install the 
mode. I had to remove the '\' escapes from the first line; otherwise the 
editor tried to load a file whose name literally starts and ends with 
double-quotation marks. The change to the second line was merely to 
allow recognition of the '.imc' extension in addition to the '.pir' 
extension.

This is a pretty minor patch request, but if you need to use emacs and 
are not familiar with elisp, it's frustrating.

--
Jim McKim
--- pir-mode.el	2005-08-08 19:58:38.318747564 -0400
+++ pir-mode.el.new	2005-08-08 20:12:25.104340421 -0400
@@ -9,8 +9,8 @@
 ;; put this file in your `load-path' and add the following lines
 ;; to your `.emacs' file:
 
-;;   (autoload 'pir-mode \"pir-mode\" nil t)
-;;   (add-to-list 'auto-mode-alist '("\\.imc\\'" . pir-mode))
+;;   (autoload 'pir-mode "pir-mode" nil t)
+;;   (add-to-list 'auto-mode-alist '("\\.\\(imc\\|pir\\)\\'" . pir-mode))
 
 ;; If you have any problems with this, you're on your own,
 ;; You could always try asking on [EMAIL PROTECTED]

Reply via email to