Upgrade packages
This commit is contained in:
parent
470909a735
commit
18342aa9f6
163 changed files with 17 additions and 15 deletions
|
@ -10,7 +10,7 @@
|
||||||
;;; Generated autoloads from async.el
|
;;; Generated autoloads from async.el
|
||||||
|
|
||||||
(autoload 'async-start-process "async" "\
|
(autoload 'async-start-process "async" "\
|
||||||
Start the executable PROGRAM asynchronously. See `async-start'.
|
Start the executable PROGRAM asynchronously named NAME. See `async-start'.
|
||||||
PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
|
PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
|
||||||
process object when done. If FINISH-FUNC is nil, the future
|
process object when done. If FINISH-FUNC is nil, the future
|
||||||
object will return the process object when the program is
|
object will return the process object when the program is
|
Binary file not shown.
|
@ -1,4 +1,6 @@
|
||||||
(define-package "async" "20191220.932" "Asynchronous processing in Emacs" 'nil :keywords
|
(define-package "async" "20191226.1227" "Asynchronous processing in Emacs"
|
||||||
|
'((emacs "24.3"))
|
||||||
|
:keywords
|
||||||
'("async")
|
'("async")
|
||||||
:url "https://github.com/jwiegley/emacs-async")
|
:url "https://github.com/jwiegley/emacs-async")
|
||||||
;; Local Variables:
|
;; Local Variables:
|
|
@ -1,13 +1,13 @@
|
||||||
;;; async.el --- Asynchronous processing in Emacs -*- lexical-binding: t -*-
|
;;; async.el --- Asynchronous processing -*- lexical-binding: t -*-
|
||||||
|
|
||||||
;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
|
;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: John Wiegley <jwiegley@gmail.com>
|
;; Author: John Wiegley <jwiegley@gmail.com>
|
||||||
;; Created: 18 Jun 2012
|
;; Created: 18 Jun 2012
|
||||||
;; Version: 1.9.4
|
;; Version: 1.9.4
|
||||||
|
;; Package-Requires: ((emacs "24.3"))
|
||||||
;; Keywords: async
|
;; Keywords: convenience async
|
||||||
;; X-URL: https://github.com/jwiegley/emacs-async
|
;; URL: https://github.com/jwiegley/emacs-async
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or
|
;; This program is free software; you can redistribute it and/or
|
||||||
;; modify it under the terms of the GNU General Public License as
|
;; modify it under the terms of the GNU General Public License as
|
||||||
|
@ -92,7 +92,7 @@ is returned unmodified."
|
||||||
|
|
||||||
It sets the value for every variable matching INCLUDE-REGEXP and
|
It sets the value for every variable matching INCLUDE-REGEXP and
|
||||||
also PREDICATE. It will not perform injection for any variable
|
also PREDICATE. It will not perform injection for any variable
|
||||||
matching EXCLUDE-REGEXP (if present) or representing a syntax-table
|
matching EXCLUDE-REGEXP (if present) or representing a `syntax-table'
|
||||||
i.e. ending by \"-syntax-table\".
|
i.e. ending by \"-syntax-table\".
|
||||||
When NOPROPS is non nil it tries to strip out text properties of each
|
When NOPROPS is non nil it tries to strip out text properties of each
|
||||||
variable's value with `async-variables-noprops-function'.
|
variable's value with `async-variables-noprops-function'.
|
||||||
|
@ -206,7 +206,7 @@ It is intended to be used as follows:
|
||||||
(process-send-region process (point-min) (point-max))))
|
(process-send-region process (point-min) (point-max))))
|
||||||
|
|
||||||
(defun async-batch-invoke ()
|
(defun async-batch-invoke ()
|
||||||
"Called from the child Emacs process' command-line."
|
"Called from the child Emacs process' command line."
|
||||||
;; Make sure 'message' and 'prin1' encode stuff in UTF-8, as parent
|
;; Make sure 'message' and 'prin1' encode stuff in UTF-8, as parent
|
||||||
;; process expects.
|
;; process expects.
|
||||||
(let ((coding-system-for-write 'utf-8-auto))
|
(let ((coding-system-for-write 'utf-8-auto))
|
||||||
|
@ -252,7 +252,7 @@ its FINISH-FUNC is nil."
|
||||||
#'identity async-callback-value (current-buffer))))))
|
#'identity async-callback-value (current-buffer))))))
|
||||||
|
|
||||||
(defun async-message-p (value)
|
(defun async-message-p (value)
|
||||||
"Return true of VALUE is an async.el message packet."
|
"Return non-nil of VALUE is an async.el message packet."
|
||||||
(and (listp value)
|
(and (listp value)
|
||||||
(plist-get value :async-message)))
|
(plist-get value :async-message)))
|
||||||
|
|
||||||
|
@ -270,7 +270,7 @@ its FINISH-FUNC is nil."
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun async-start-process (name program finish-func &rest program-args)
|
(defun async-start-process (name program finish-func &rest program-args)
|
||||||
"Start the executable PROGRAM asynchronously. See `async-start'.
|
"Start the executable PROGRAM asynchronously named NAME. See `async-start'.
|
||||||
PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
|
PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
|
||||||
process object when done. If FINISH-FUNC is nil, the future
|
process object when done. If FINISH-FUNC is nil, the future
|
||||||
object will return the process object when the program is
|
object will return the process object when the program is
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue