mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 06:50:23 -08:00
Merge from origin/emacs-25
a9c48d5Additional fixes for file notification6bd9d69Fix documentation of 'global-disable-point-adjustment'8c22ac9; Spelling fix2975784Set file modes of pinentry socket for extra safety2667b3eClarify GnuPG version compatibility chapter5e34c36Revert "Change the default socket location for pinentry"e19c1c3Kill off xref--display-history5698947Keep the xref buffer visible until the user quits it explicitlye34fbdeChange the default socket location for pinentry5f89658Mention how to enable pinentry featuredb51224Sync with gnulibaa5a794Remove `semanticdb-save-all-db-idle' from `auto-save-hook'2d8b2fdRestore point when writing semantic table to disk27d3430Mention pinentry.el in epa manual5baa001Fix Bug#227367261355Grammar fix in doc stringd0f3b18Naming fix for consistency74ec92dPrefer customized value for GnuPG executableea0b604Fix memory reservation on MS-Windowsc5f72aaUpdate NextStep readme and add wish list.6de26a7Report also result in `file-notify--test-event-handler'5d17ae7Improve file-notify-test08-watched-file-in-watched-dir1cb1268Fix todo-mode item date editing bugs1e996cfFix "[:upper:]" for non-ASCII characters896f993Allow customising the article mode cursor behavior24c1c1dUse pop-to-buffer-same-window in woman.el2a75f64New filenotify test for bug#22736c9bccf7Report critical battery errorsd675db9Make eww message toggling message clearer5e0bb40* lisp/calc/calc-units.el (math-standard-units): Update to 2014 CODATA adjustment.fa8fd65; Improve character-folding entries in NEWS3722a69Fix bugs in window resizing code289d5c6Fix decoding DOS EOL in a unibyte buffer2abcb06Correct c-parse-state cache manipulation error.14aec91Take advantage of new GnuPG version check functione80c2a7Make GnuPG version check robuster15a9464Fix x-load-color-file pointer signedness132dbf0* lisp/time-stamp.el (time-stamp-time-zone): Fix doc string punct.78ab6f1Follow convention for greek letter constants.106b5bbAdd Stefan-Boltzmann constant to calc units table.b96baa8* lisp/calc/calc-units.el (math-build-units-table-buffer): Use special-mode.5f91cf9Avoid loading cl-lib for term/xterm.elc, eg in -Q -nw. (Bug#22669)2d40f7dFix soffice UserInstallation-URL for Windowsb1a3ebeFix 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