mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-01 20:06:00 +00:00
*** empty log message ***
This commit is contained in:
parent
fff4a04678
commit
a9686d00fd
@ -1,3 +1,10 @@
|
||||
2007-07-22 Ralf Angeli <angeli@caeruleus.net>
|
||||
|
||||
* textmodes/reftex.el (reftex-access-parse-file): Create parse
|
||||
file in a way that does not interfere with recentf mode.
|
||||
(reftex-access-parse-file): Do not risk destroying an existing
|
||||
buffer.
|
||||
|
||||
2007-07-22 Alexandre Julliard <julliard@winehq.org>
|
||||
|
||||
* vc-git.el: New file.
|
||||
|
@ -1331,10 +1331,8 @@ Valid actions are: readable, restore, read, kill, write."
|
||||
(put docstruct-symbol 'modified nil)
|
||||
(save-excursion
|
||||
(if (file-writable-p file)
|
||||
(progn
|
||||
(with-temp-file file
|
||||
(message "Writing parse file %s" (abbreviate-file-name file))
|
||||
(find-file file)
|
||||
(erase-buffer)
|
||||
(insert (format ";; RefTeX parse info file\n"))
|
||||
(insert (format ";; File: %s\n" master))
|
||||
(insert (format ";; User: %s (%s)\n\n"
|
||||
@ -1357,9 +1355,7 @@ Valid actions are: readable, restore, read, kill, write."
|
||||
)
|
||||
(t (print x))))
|
||||
list))
|
||||
(insert "))\n\n")
|
||||
(save-buffer 0)
|
||||
(kill-buffer (current-buffer)))
|
||||
(insert "))\n\n"))
|
||||
(error "Cannot write to file %s" file)))
|
||||
t))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user