auctex-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-devel] Re: [AUCTeX-diffs] Changes to reftex/lisp/reftex-base.el,


From: David Kastrup
Subject: [AUCTeX-devel] Re: [AUCTeX-diffs] Changes to reftex/lisp/reftex-base.el, v
Date: Sun, 22 Jul 2007 11:34:29 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux)

Ralf Angeli <address@hidden> writes:

> CVSROOT:      /sources/auctex
> Module name:  reftex
> Changes by:   Ralf Angeli <angeli>    07/07/22 07:38:58
>
> Index: reftex-base.el
> ===================================================================
> RCS file: /sources/auctex/reftex/lisp/reftex-base.el,v
> retrieving revision 1.3
> retrieving revision 1.4
> diff -u -b -r1.3 -r1.4
> --- reftex-base.el    10 Mar 2007 17:21:32 -0000      1.3
> +++ reftex-base.el    22 Jul 2007 07:38:58 -0000      1.4
> @@ -361,6 +361,7 @@
>          (nth 1 entry)
>        t)))
>  
> +;;;###autoload
>  (defun reftex-set-cite-format (value)
>    "Set the document-local value of `reftex-cite-format'.
>  When such a value exists, it overwrites the setting given with
> @@ -1106,7 +1107,7 @@
>          (if (file-writable-p file)
>              (progn
>                (message "Writing parse file %s" (abbreviate-file-name file))
> -              (find-file file)
> +           (set-buffer (get-buffer-create file))
>                (erase-buffer)

NO!!!!!!  You can't just take a buffer that happens to have the same
_buffer_ name as the file and kill it.  What were you thinking?  Ok,
it is Sunday morning.

If you start and end with a clean slate, probably the easiest thing to
do is to wrap everything in

(with-temp-file file
   ...
)

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum




reply via email to

[Prev in Thread] Current Thread [Next in Thread]