comparison lisp/w32-fns.el @ 90261:7beb78bc1f8e

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
author Miles Bader <miles@gnu.org>
date Mon, 16 Jan 2006 08:37:27 +0000
parents ee12d75eb214 09f3c0ac0073
children c5406394f567
comparison
equal deleted inserted replaced
90260:0ca0d9181b5e 90261:7beb78bc1f8e
464 464
465 ;;; Arrange for the kill and yank functions to set and check the clipboard. 465 ;;; Arrange for the kill and yank functions to set and check the clipboard.
466 (setq interprogram-cut-function 'x-select-text) 466 (setq interprogram-cut-function 'x-select-text)
467 (setq interprogram-paste-function 'x-get-selection-value) 467 (setq interprogram-paste-function 'x-get-selection-value)
468 468
469
470 ;;;; Support for build process
471 (defun w32-batch-update-autoloads ()
472 "Like `batch-update-autoloads', but takes the name of the autoloads file
473 from the command line.
474
475 This is required because some Windows build environments, such as MSYS,
476 munge command-line arguments that include file names to a horrible mess
477 that Emacs is unable to cope with."
478 (let ((generated-autoload-file
479 (expand-file-name (pop command-line-args-left))))
480 (batch-update-autoloads)))
469 481
470 ;;; arch-tag: c49b48cc-0f4f-454f-a274-c2dc34815e14 482 ;;; arch-tag: c49b48cc-0f4f-454f-a274-c2dc34815e14
471 ;;; w32-fns.el ends here 483 ;;; w32-fns.el ends here