Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!mit-eddie!genrad!rep From: rep@genrad.UUCP (Pete Peterson) Newsgroups: comp.emacs Subject: Re: Converting GNU Emacs' etc/DOC-xx.xx.x into a Lisp reference manual Message-ID: <1343@genrad.UUCP> Date: Fri, 4-Sep-87 07:42:13 EDT Article-I.D.: genrad.1343 Posted: Fri Sep 4 07:42:13 1987 Date-Received: Sat, 5-Sep-87 17:04:06 EDT References: <1821@xanth.UUCP> <8709031944.AA05721@broadway.columbia.edu> Reply-To: rep@genrad.UUCP (Pete Peterson) Organization: GenRad, Inc., Concord, Mass. Lines: 19 In article <8709031944.AA05721@broadway.columbia.edu> agw@COLUMBIA.EDU writes: >I tried it, but I ran into some problems. Namely, Emacs complained >about the buffer etc/DOC-xx.xx.x being read-only. Apparently this >happens because I can't write into the emacs/etc directory. > I ran into the same problem and avoided it as shown in the following excerpt: (set-visited-file-name (concat (buffer-file-name) "." (cond ((null grind-DOC-macro-package) "t") (t (symbol-name grind-DOC-macro-package))))) ;;following line added to avoid read-only buffer problems (setq buffer-read-only nil) (delete-other-windows) ; pete peterson {decvax,linus,wjh12,mit-eddie,masscomp}!genrad!rep