[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] elpa 036b475 12/23: Merge pull request #118 from conao3/fix-warni
From: |
Thierry Volpiatto |
Subject: |
[elpa] elpa 036b475 12/23: Merge pull request #118 from conao3/fix-warnings |
Date: |
Fri, 30 Apr 2021 07:08:06 -0400 (EDT) |
branch: elpa
commit 036b475a29bbbee52f88c7d0332341c2643155fb
Merge: 11769c1 fbbba03
Author: Thierry Volpiatto <thierry.volpiatto@gmail.com>
Commit: GitHub <noreply@github.com>
Merge pull request #118 from conao3/fix-warnings
fix package-lint/check-doc/byte-compiler warnings
---
async-pkg.el | 2 +-
async.el | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/async-pkg.el b/async-pkg.el
index 815c100..b277b17 100644
--- a/async-pkg.el
+++ b/async-pkg.el
@@ -1,7 +1,7 @@
;;; async-pkg.el --- Generated package description from async.el
(define-package "async" "1.9.4"
"Asynchronous processing in Emacs"
- 'nil
+ '((emacs "24.3"))
:url "https://github.com/jwiegley/emacs-async"
:keywords '("async"))
diff --git a/async.el b/async.el
index baf3fed..375b47f 100644
--- a/async.el
+++ b/async.el
@@ -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.
;; Author: John Wiegley <jwiegley@gmail.com>
;; Created: 18 Jun 2012
;; Version: 1.9.4
-
-;; Keywords: async
-;; X-URL: https://github.com/jwiegley/emacs-async
+;; Package-Requires: ((emacs "24.3"))
+;; Keywords: convenience async
+;; URL: https://github.com/jwiegley/emacs-async
;; This program is free software; you can redistribute it and/or
;; 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
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\".
When NOPROPS is non nil it tries to strip out text properties of each
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))))
(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
;; process expects.
(let ((coding-system-for-write 'utf-8-auto))
@@ -252,7 +252,7 @@ its FINISH-FUNC is nil."
#'identity async-callback-value (current-buffer))))))
(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)
(plist-get value :async-message)))
@@ -270,7 +270,7 @@ its FINISH-FUNC is nil."
;;;###autoload
(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
process object when done. If FINISH-FUNC is nil, the future
object will return the process object when the program is
- [elpa] elpa 14f48de 16/23: Fix Makefile, (continued)
- [elpa] elpa 14f48de 16/23: Fix Makefile, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 36a1015 15/23: Change default value of async-bytecomp-allowed-packages to 'all, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 86aef2c 14/23: Untabify and indent-buffer (#119), Thierry Volpiatto, 2021/04/30
- [elpa] elpa 00c6f3f 18/23: fix inclusion of bytecomp variables, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 4f78c0c 20/23: Merge pull request #138 from Stebalien/fix/byte-comp-prefix, Thierry Volpiatto, 2021/04/30
- [elpa] elpa d7e7f79 22/23: Update README, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 943a75c 23/23: Fix paren error in dired-async, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 64bb180 06/23: Fix typos, Thierry Volpiatto, 2021/04/30
- [elpa] elpa d255820 09/23: Merge branch 'master' of github.com:jwiegley/emacs-async, Thierry Volpiatto, 2021/04/30
- [elpa] elpa e81c685 08/23: Update *pkg.el file, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 036b475 12/23: Merge pull request #118 from conao3/fix-warnings,
Thierry Volpiatto <=
- [elpa] elpa 11769c1 10/23: Update version in source file as well, Thierry Volpiatto, 2021/04/30
- [elpa] elpa 0fd5d54 19/23: Make the async byte compile variable injection regexp "shy", Thierry Volpiatto, 2021/04/30
- [elpa] elpa 630708b 21/23: Merge branch 'master' of github.com:jwiegley/emacs-async, Thierry Volpiatto, 2021/04/30