mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
(w32-append-code-lines): New function.
This commit is contained in:
parent
5641e7a93a
commit
d1dcf3e779
@ -1,3 +1,7 @@
|
||||
2006-12-09 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* w32-fns.el (w32-append-code-lines): New function.
|
||||
|
||||
2006-12-09 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* comint.el (comint-insert-input): Delete obsolete comment.
|
||||
|
@ -469,5 +469,19 @@ that Emacs is unable to cope with."
|
||||
(expand-file-name (pop command-line-args-left))))
|
||||
(batch-update-autoloads)))
|
||||
|
||||
(defun w32-append-code-lines (orig extra)
|
||||
"Append non-empty non-comment lines in the file EXTRA to the file ORIG.
|
||||
|
||||
This function saves all buffers and kills the Emacs session, without asking
|
||||
for any permissions.
|
||||
|
||||
This is required because the Windows build environment is not required
|
||||
to include Sed, which is used by leim/Makefile.in to do the job."
|
||||
(find-file orig)
|
||||
(goto-char (point-max))
|
||||
(insert-file-contents extra)
|
||||
(delete-matching-lines "^$\\|^;")
|
||||
(save-buffers-kill-emacs t))
|
||||
|
||||
;;; arch-tag: c49b48cc-0f4f-454f-a274-c2dc34815e14
|
||||
;;; w32-fns.el ends here
|
||||
|
Loading…
Reference in New Issue
Block a user