Date: Tue, 24 Jun 2003 23:44:59 +0200 From: Nakal <nakal@web.de> To: seanc@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: docbookide.el Message-ID: <200306242344.59552.nakal@web.de>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306242344.59552.nakal>