diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-22 16:11:53 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-22 16:11:53 +0000 |
commit | eb1d22b136a3f7a49b4060553b79ee188f55a498 (patch) | |
tree | 9f9e5ddc960b8484bc6e9413ee7bb155abb066f3 /lisp/emacs-lisp | |
parent | 855940df6bde5ed41ed55336a3ac6f6ae0c6267e (diff) | |
parent | 813478c8557541efa918de18f7d863a33210a598 (diff) | |
download | emacs-eb1d22b136a3f7a49b4060553b79ee188f55a498.tar.gz emacs-eb1d22b136a3f7a49b4060553b79ee188f55a498.tar.bz2 emacs-eb1d22b136a3f7a49b4060553b79ee188f55a498.zip |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 5 | ||||
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 1 | ||||
-rw-r--r-- | lisp/emacs-lisp/package.el | 5 |
3 files changed, 4 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index fa5d1cff417..b5581aa3fbb 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1997-1998, 2001-2020 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> -;; Version: 0.6.2 +;; Old-Version: 0.6.2 ;; Keywords: docs, maint, lisp ;; This file is part of GNU Emacs. @@ -170,6 +170,7 @@ ;;; Code: (defvar checkdoc-version "0.6.2" "Release version of checkdoc you are currently running.") +(make-obsolete-variable 'checkdoc-version nil "28.1") (require 'cl-lib) (require 'help-mode) ;; for help-xref-info-regexp @@ -2642,7 +2643,7 @@ function called to create the messages." (goto-char (point-max)) (let ((inhibit-read-only t)) (insert "\n\n\C-l\n*** " label ": " - check-type " V " checkdoc-version))))) + check-type))))) (defun checkdoc-error (point msg) "Store POINT and MSG as errors in the checkdoc diagnostic buffer." diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 85cc8c8e7ad..bb7817f242c 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -2845,7 +2845,6 @@ See `edebug-behavior-alist' for implementations.") (if (not (eq edebug-buffer edebug-outside-buffer)) (goto-char edebug-outside-point)) (if (marker-buffer (edebug-mark-marker)) - ;; Does zmacs-regions need to be nil while doing set-marker? (set-marker (edebug-mark-marker) edebug-outside-mark)) )) ; unwind-protect ;; None of the following is done if quit or signal occurs. diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index f5a9055b5b7..4312ab9ca9a 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -3179,15 +3179,12 @@ Return (PKG-DESC [NAME VERSION STATUS DOC])." (defun package-menu--refresh-contents (&optional _arg _noconfirm) "In Package Menu, download the Emacs Lisp package archive. Fetch the contents of each archive specified in -`package-archives', and then refresh the package menu. Signal a -user-error if there is already a refresh running asynchronously. +`package-archives', and then refresh the package menu. `package-menu-mode' sets `revert-buffer-function' to this function. The args ARG and NOCONFIRM, passed from `revert-buffer', are ignored." (package--ensure-package-menu-mode) - (when (and package-menu-async package--downloads-in-progress) - (user-error "Package refresh is already in progress, please wait...")) (setq package-menu--old-archive-contents package-archive-contents) (setq package-menu--new-package-list nil) (package-refresh-contents package-menu-async)) |