FreeBSD Port: docbookide.el

Nakal nakal at web.de
Tue Jun 24 14:45:09 PDT 2003


Hi!

I have found a small bug in 
/usr/ports/textproc/docbookide.el/pkg-message.

I am not an elisp expert, but I think I fixed it, because it seems to 
work now.

The lines in latest ports:
-------------------------------------------------
(setq auto-mode-alist
      (append
       (list
        '("\\.sgm" . docbook-mode))
        '("\\.sgml" . docbook-mode))
        '("\\.xml" . docbook-mode))
       auto-mode-alist))
-------------------------------------------------

Should be (in my opinion):
-------------------------------------------------
(setq auto-mode-alist
      (append
       (list
        '("\\.sgm" . docbook-mode)
        '("\\.sgml" . docbook-mode)
        '("\\.xml" . docbook-mode)
       auto-mode-alist))
)
-------------------------------------------------


Please check it once again. Thank you.

Martin



More information about the freebsd-ports mailing list