Merge from origin/emacs-25
a9c48d5
Additional fixes for file notification6bd9d69
Fix documentation of 'global-disable-point-adjustment'8c22ac9
; Spelling fix2975784
Set file modes of pinentry socket for extra safety2667b3e
Clarify GnuPG version compatibility chapter5e34c36
Revert "Change the default socket location for pinentry"e19c1c3
Kill off xref--display-history5698947
Keep the xref buffer visible until the user quits it explicitlye34fbde
Change the default socket location for pinentry5f89658
Mention how to enable pinentry featuredb51224
Sync with gnulibaa5a794
Remove `semanticdb-save-all-db-idle' from `auto-save-hook'2d8b2fd
Restore point when writing semantic table to disk27d3430
Mention pinentry.el in epa manual5baa001
Fix Bug#227367261355
Grammar fix in doc stringd0f3b18
Naming fix for consistency74ec92d
Prefer customized value for GnuPG executableea0b604
Fix memory reservation on MS-Windowsc5f72aa
Update NextStep readme and add wish list.6de26a7
Report also result in `file-notify--test-event-handler'5d17ae7
Improve file-notify-test08-watched-file-in-watched-dir1cb1268
Fix todo-mode item date editing bugs1e996cf
Fix "[:upper:]" for non-ASCII characters896f993
Allow customising the article mode cursor behavior24c1c1d
Use pop-to-buffer-same-window in woman.el2a75f64
New filenotify test for bug#22736c9bccf7
Report critical battery errorsd675db9
Make eww message toggling message clearer5e0bb40
* lisp/calc/calc-units.el (math-standard-units): Update to 2014 CODATA adjustment.fa8fd65
; Improve character-folding entries in NEWS3722a69
Fix bugs in window resizing code289d5c6
Fix decoding DOS EOL in a unibyte buffer2abcb06
Correct c-parse-state cache manipulation error.14aec91
Take advantage of new GnuPG version check functione80c2a7
Make GnuPG version check robuster15a9464
Fix x-load-color-file pointer signedness132dbf0
* lisp/time-stamp.el (time-stamp-time-zone): Fix doc string punct.78ab6f1
Follow convention for greek letter constants.106b5bb
Add Stefan-Boltzmann constant to calc units table.b96baa8
* lisp/calc/calc-units.el (math-build-units-table-buffer): Use special-mode.5f91cf9
Avoid loading cl-lib for term/xterm.elc, eg in -Q -nw. (Bug#22669)2d40f7d
Fix soffice UserInstallation-URL for Windowsb1a3ebe
Fix display of <pre> elements57d0e3d
; * lisp/help-fns.el: Remove outdated comment.7a0628d
; * admin/make-tarball.txt: Mention cleaning.
This commit is contained in:
commit
81ef756e6a
35 changed files with 1040 additions and 352 deletions
|
@ -1019,6 +1019,10 @@ The value returned is a list of elements of the form
|
|||
|
||||
(cl--generic-prefill-dispatchers 0 (eql nil))
|
||||
(cl--generic-prefill-dispatchers window-system (eql nil))
|
||||
(cl--generic-prefill-dispatchers (terminal-parameter nil 'xterm--get-selection)
|
||||
(eql nil))
|
||||
(cl--generic-prefill-dispatchers (terminal-parameter nil 'xterm--set-selection)
|
||||
(eql nil))
|
||||
|
||||
;;; Support for cl-defstructs specializers.
|
||||
|
||||
|
|
|
@ -1453,9 +1453,8 @@ loading packages twice."
|
|||
(defvar package--downloads-in-progress nil
|
||||
"List of in-progress asynchronous downloads.")
|
||||
|
||||
(declare-function epg-check-configuration "epg-config"
|
||||
(config &optional minimum-version))
|
||||
(declare-function epg-configuration "epg-config" ())
|
||||
(declare-function epg-find-configuration "epg-config"
|
||||
(protocol &optional force))
|
||||
(declare-function epg-import-keys-from-file "epg" (context keys))
|
||||
|
||||
;;;###autoload
|
||||
|
@ -1555,11 +1554,15 @@ downloads in the background."
|
|||
(let ((default-keyring (expand-file-name "package-keyring.gpg"
|
||||
data-directory))
|
||||
(inhibit-message async))
|
||||
(if (get 'package-check-signature 'saved-value)
|
||||
(when package-check-signature
|
||||
(epg-find-configuration 'OpenPGP))
|
||||
(setq package-check-signature
|
||||
(if (epg-find-configuration 'OpenPGP)
|
||||
'allow-unsigned)))
|
||||
(when (and package-check-signature (file-exists-p default-keyring))
|
||||
(condition-case-unless-debug error
|
||||
(progn
|
||||
(epg-check-configuration (epg-configuration))
|
||||
(package-import-keyring default-keyring))
|
||||
(package-import-keyring default-keyring)
|
||||
(error (message "Cannot import default keyring: %S" (cdr error))))))
|
||||
(package--download-and-read-archives async))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue