emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master updated (e053cef -> ef4a542)


From: Michael Albinus
Subject: [elpa] master updated (e053cef -> ef4a542)
Date: Wed, 30 Dec 2015 11:49:18 +0000

albinus pushed a change to branch master.

      from  e053cef   el-search: some cleanup
       new  4733d1e   Initial revision
       new  6647749   Small change
       new  a8ac820   Renamed emacs-async.el to async.el
       new  8d37c00   Added note to README
       new  728e791   Added dired-async
       new  954c865   Updated README
       new  3d388c6   Added support for signal propagation
       new  0a7f3dd   Added async-inject-environment
       new  c48d3db   Added smtpmail-async.el
       new  63fe7ee   Updated README
       new  1ad2902   Quiet byte-compiler warnings
       new  190a040   Fixed async-smtpmail-send-it
       new  4fb51ce   Corrected a problem with async deletions
       new  628a295   Send data over a pipe, rather than in an argument
       new  d771dff   Added `async-start-process'
       new  12ca991   Made some macros into functions, added debug code
       new  e08c251   Added `dired-async-use-native-commands'
       new  b80f1a5   Don't use pipes for communication just yet
       new  386a876   Some minor adjustments
       new  742c82e   Added message passing, but undocumented for now
       new  b7ec203   Fix for when async.el is byte-compiled
       new  7ba4f40   Always base64 encode
       new  1028235   Don't use lexical-binding in dired-async.el
       new  497e4da   Fix to dired-async for wdired-mode
       new  dfaddaa   Use pipes instead of variable passing
       new  66610f4   smtpmail-async: Report status to user when done
       new  24811ee   Show full backtraces if `async-debug' is non-nil
       new  3f870f5   Show ops in progress `dired-async-in-process-face'
       new  2db438b   dired-async now shows progress using overlays
       new  1cec376   Added async-sandbox
       new  acb0885   Several minor fixes
       new  15f737f   Propagate non-zero exit codes as errors
       new  eb26295   * helm-async.el: New, redefine dired-create-file to work 
with helm and dired. Allow copying a list of files (marked files) completely 
asynchronously. Support for deleting files is removed for now as it is not 
working.
       new  ec1f0e8   * helm-async.el: let-bind dired-recursive-copies to 
'always to avoid hanging on child.
       new  eda8d32   * helm-async.el (dired-create-file): Use quote.
       new  c472c4a   * helm-async.el Return file errors in child Emacs.
       new  416c73a   * helm-async.el (helm-async-be-async): New, allow turning 
off async. (dired-create-file): Use it.
       new  49f8b81   * helm-async.el: Update copyright
       new  ad07ff3   Merge pull request #1 from thierryvolpiatto/master
       new  ac1b896   Minor touches
       new  9361417   Started work on a generalized async-file service
       new  3ac941a   Move async.el testing code into its own module
       new  c35324c   Async queue handling has to happen in dired-async
       new  9779abc   Fix github issue 2
       new  819b936   * helm-async.el: Turn off mode-line notification only 
when last process end.
       new  6941276   * helm-async.el (helm-async-processes): use process-name. 
(helm-async-kill-process): Kill last async process.
       new  3cc71f3   * helm-async.el (helm-async-mode): ding when finish.
       new  1647b97   * async.el (async-start): Use the possible true name of 
emacs executable.
       new  96cbe3a   Fix missing optional arguments when calling 
`async-copy-file' in `async-dired.el'.
       new  d9d68f7   Merge pull request #5 from mstrlu/fix-async-copy-call
       new  fba2cb9   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  bd43f86   * helm-async.el (dired-create-files): Honor 
dired-overwrite-confirmed.
       new  34ee9c5   * helm-async.el (dired-create-file): Fix operation is 
executed even when replying no for overwriting.
       new  9585ae1   * helm-async.el (helm-async-env-variables-regexp): Fix 
for copying from android devices.
       new  ef0e45c   add async-pkg.el
       new  0afa685   Merge pull request #11 from myuhe/pkg
       new  42fba8d   * dired-async.el: Add a defvar for 
`dired-async-use-native-commands'
       new  a5ad866   Merge pull request #6 from 
mstrlu/fix-def-use-native-commands
       new  dc69911   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  ee21700   * async.el: Issue #7 Apply sabof patch from github; Fix 
processing non--latin chars. (async--receive-sexp):do it. (async--insert-sexp): 
do it.
       new  c9a0724   Update copyrights.
       new  cf12552   * helm-async.el: Fix mode-line updating for 
emacs-24.3.50. (helm-async-mode): Propertize lighter. 
(helm-async-after-file-create): Delay execution of mode-line notification. 
(helm-async-message): add group. (helm-async-mode-message): new face.
       new  8d38306   * helm-async.el: Untabify and reindent.
       new  3544948   * helm-async.el (dired-create-files): No need to 
backquote callback.
       new  fb8f10b   * helm-async.el (dired-create-files): Handle 
`dired-recursive-copies' when async too.
       new  c029934   * helm-async.el: Add comments about incompatibility with 
dired-async.el and async-file.el.
       new  bcffaeb   * helm-async.el (dired-create-file): Revert changes in 
fb8f10b.
       new  242ae73   * helm-async.el: Fix error handling.
       new  9c02acd   Add test for #17.
       new  8e05e02   Prevent accidental creation of lexical closures.
       new  5ef546a   Have test file add its own directory to load path
       new  9b5bb5c   Add more comprehensive testing for anti-closure feature
       new  93b05a9   More robust evaluation and closure-protection of 
start-func
       new  f6d7a74   Merge pull request #18 from DarwinAwardWinner/lexbind-fix
       new  b6d990d   Add lexbind test
       new  ba705c6   Add test for handling different ways of passing a function
       new  2a532d3   Replace closure prevention with closure sanitation
       new  f18c735   Merge pull request #19 from DarwinAwardWinner/lexbind-fix
       new  374f514   Complete the docstring for "async--get-function"
       new  9704eb8   Merge pull request #21 from DarwinAwardWinner/lexbind-fix
       new  204750d   Revert "* helm-async.el: Fix error handling."
       new  3f751fb   Revert master back to 242ae73
       new  b05c63a   Don't rely on async.el being in load-path.
       new  4a7b07b   Merge pull request #23 from 
DarwinAwardWinner/no-load-path-fix
       new  85cedab   * async-file.el: Removed. * dired-async.el: Removed.
       new  aabc7b4   * helm-async.el: Rename all with dired-async prefix 
instead of helm-async.
       new  5ff0f9b   * helm-async.el: Use cl-lib instead of cl.
       new  eff5419   Rename helm-async.el to dired-async.el
       new  a37e1db   * dired-async.el: Finish converting all names to dired*.
       new  ec8decc   * dired-async.el (helm-async-be-async): alias for 
dired-async-be-async.
       new  1c54de3   * README.md: Update.
       new  b311374   * dired-async.el (dired-async-mode): Notify number of 
jobs running in lighter.
       new  b514e21   * async-test.el: Remove now unnecessary tests.
       new  4d14cbb   * async-test.el: Update copyrights.
       new  3a23aa1   * dired-async.el (helm-async-be-async): Move it as 
obsolete variable alias to helm.
       new  b67254c   * smtpmail-async.el (async-smtpmail-send-it): Eval 
content of buffer outside temp buffer.(attempt to fix issue in mu4e)
       new  3712607   * smtpmail-async.el: Exclude some vars when injecting 
(#22).
       new  eaa0ec1   * smtpmail-async.el: Fix encoding problems (#27)
       new  f48fe54   * smtpmail-async.el: Try to catch 'done to not exit when 
smtpmail-via-smtp is recalled (#22).
       new  73d8920   * smtpmail-async.el: Revert previous change (catch).
       new  fe319a7   * smtpmail-async.el (async-smtpmail-before-send-hook): 
New hook that run on child emacs before sending.
       new  addec5e   * smtpmail-async.el (async-smtpmail-send-it): Inject the 
value of auth-sources (#22)
       new  05c9861   * smtpmail-async.el (async-smtpmail-before-send-hook): 
Add docstring.
       new  a0195ad   Fix markdown in README
       new  b962cbf   Merge pull request #32 from Trevoke/patch-1
       new  cca41ed   * README.md: Fix typo.
       new  b2b4bd6   * async-bytecomp.el: New file.
       new  f81ff95   Remove version number in all files. * async-bytecomp.el 
(async-byte-compile-log-file): Use .emacs.d as   directory. * async-pkg.el: 
Update version number.
       new  057d002   * async.el: Fix recompilation of async dir. * 
async-bytecomp.el: load async on startup.
       new  4db2273   * async-bytecomp.el: Revert previous change in 
package--compile.
       new  9f038b4   * smtpmail-async.el: require message to shutup byte 
compiler.
       new  79e6110   Add comments, no--code-change.
       new  1c35023   * async.el: Fix comment.
       new  8e880a5   * smtpmail-async.el: Add code section no code-change.
       new  a6d9541   * async-bytecomp.el: Use only load.
       new  1f813ba   * async-bytecomp.el: Fix comment.
       new  ed0202f   fix #33 async-start evals (symbol-file 
'async-batch-invoke 'defun) at compile time
       new  c52a60f   Merge pull request #34 from michael-heerdegen/fix-33
       new  6d4e1a5   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  57efc8d   * async-pkg.el: Don't compile.
       new  8cfde3d   * async-bytecomp.el: Add comment.
       new  228d022   * dired-async.el (dired-create-file): require dired-x for 
newer emacs versions.
       new  9b835e3   * async-bytecomp.el: Send errors in single buffer (#36). 
Don't select log buffer unless using special-display.
       new  914a284   * async-bytecomp.el: Fix callback. Now we use 
display-buffer, the buffer is not current, so use with-current-buffer.
       new  f1b0fc5   * async-bytecomp.el: Be quiet when compiling for elpa.
       new  aef3412   * async-bytecomp.el: emacs-24 indent.
       new  d990787   * async-bytecomp.el (package--compile): load 
async-bytecomp. This is needed when reinstalling async package.
       new  2235bc9   Inject bytecomp variables (#44).
       new  a921e5f   Use always the args 0 and force for 
byte-recompile-directory.
       new  8464261   Changed symbol markup from Lisp idiom to Markdown
       new  64d862f   Marked up 'nil' throughout
       new  8bb0876   Marked up file and buffer names
       new  0ddafcf   Merge pull request #41 from PhilHudson/master
       new  dc63b59   Documentation tweaks; mention DEFAULT-DIRECTORY
       new  89f1ca6   Merge pull request #42 from mneilsen/master
       new  2f28229   Use cl-incf and don't compile test file.
       new  2b01ad8   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  348600d   Unbound async-byte-recompile-directory when reinstalling 
async.
       new  d250e7b   Allow customizing which packages compile async (#46).
       new  7625671   Async compile also dependendies (#46).
       new  a96e6d4   Fix doctring (#46).
       new  005714e   Don't run the loop when async-bytecomp-allowed-packages 
is nil.
       new  3ba79b2   Use package--get-deps to get packages dependencies.
       new  1da6e8f   Don't use package--get-deps that doesn't handle non 
installed packages.
       new  bafc3fa   Allow setting async-bytecomp-get-allowed-pkgs to compile 
async all packages.
       new  1f5e89b   * async-bytecomp.el (package--compile): Fix typo.
       new  c9fb3f5   async-bytecomp-allowed-packages should be a list of 
symbols.
       new  753d593   Allow enabling dired-async with a minor-mode.
       new  51c598b   Add autoload cookie and make dired-async--modeline-mode 
internal.
       new  f44f8be   * README.md: Update infos for dired-async.
       new  23edf9e   * dired-async.el (dired-async-mode): Fix group name.
       new  bedfa96   * dired-async.el: Fix compatibility with emacs-24.3.
       new  021be6f   * dired-async.el: Remove now unused dired-async-be-async.
       new  40d4f78   New mode async-bytecomp-package-mode.
       new  c368125   * async-bytecomp.el: Add autoload cookies.
       new  12235bd   * async-pkg.el: Update version number.
       new  cdbf622   No message on startup when quiet.
       new  062c609   Add more helm packages to compile async.
       new  2143217   Bind print-level and print-length (#48).
       new  8c0cc0f   Add magit to async-bytecomp-allowed-package.
       new  4ab15f7   Merge pull request #50 from tarsius/master
       new  98ef20d   Change mode-line face.
       new  0b60259   Check if package-archive-contents is populated (#51).
       new  cbd8d9a   Update version number.
       new  a97aa4c   Don't call package-activate-1 in package--compile.
       new  7616e0c   Check if pkg is member of package-archive-contents (#51).
       new  57257f0   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  ee727e1   Add async to load-path when recompiling itself.
       new  1ddb3a0   Add to load-path and load only async.
       new  8bb464f   Add melpa badges to README.
       new  128eb83   Fix pkg file and instructions in dired-async.
       new  d98799c   Add epg to inject variables in smtpmail (#54).
       new  53fccc5   Rename buffers after renaming (#56).
       new  3499a32   Only rename buffers on rename operation (#56).
       new  40814ea   Correct package headers
       new  3248303   Merge pull request #55 from syohex/correct-header
       new  4319ab6   Merge branch 'master' of github.com:jwiegley/emacs-async
       new  1f12717   Don't recompute length fn-list, ensure operation is 
downcased for safety (#57).
       new  5c61408   Update version in *pkg.el file.
       new  c25bf17   Document async compilation of packages in README.
       new  36a21eb   Remove old require in test file.
       new  1794ea4   async-start is now a function (#43).
       new  ca73877   Merge pull request #57 from jwiegley/HEAD
       new  2a40355   No need to require find-func.
       new  4e44885   Add 'packages/async/' from commit 
'2a40355c3328e57102a9648c9108e19d67727dc1'
       new  b375440   Add subtree package async
       new  ef4a542   Merge branch 'master' of git://bzr.sv.gnu.org/emacs/elpa


Summary of changes:
 externals-list                   |    1 +
 packages/async/README.md         |  145 +++++++++++++++++++
 packages/async/async-bytecomp.el |  172 ++++++++++++++++++++++
 packages/async/async-pkg.el      |   12 ++
 packages/async/async-test.el     |  140 ++++++++++++++++++
 packages/async/async.el          |  292 ++++++++++++++++++++++++++++++++++++++
 packages/async/dired-async.el    |  291 +++++++++++++++++++++++++++++++++++++
 packages/async/smtpmail-async.el |   73 ++++++++++
 8 files changed, 1126 insertions(+), 0 deletions(-)
 create mode 100644 packages/async/README.md
 create mode 100644 packages/async/async-bytecomp.el
 create mode 100644 packages/async/async-pkg.el
 create mode 100644 packages/async/async-test.el
 create mode 100644 packages/async/async.el
 create mode 100644 packages/async/dired-async.el
 create mode 100644 packages/async/smtpmail-async.el



reply via email to

[Prev in Thread] Current Thread [Next in Thread]