Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 902-908) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 131-137) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 261-262) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278
This commit is contained in:
commit
18cd1f1a08
195 changed files with 6541 additions and 3863 deletions
|
@ -3004,8 +3004,10 @@ in any of these classes."
|
|||
(if advice-docstring
|
||||
(push advice-docstring paragraphs))))
|
||||
(setq origdoc (if paragraphs
|
||||
;; separate paragraphs with blank lines:
|
||||
(mapconcat 'identity (nreverse paragraphs) "\n\n")))
|
||||
(propertize
|
||||
;; separate paragraphs with blank lines:
|
||||
(mapconcat 'identity (nreverse paragraphs) "\n\n")
|
||||
'ad-advice-info function)))
|
||||
(help-add-fundoc-usage origdoc usage)))
|
||||
|
||||
(defun ad-make-plain-docstring (function)
|
||||
|
|
|
@ -1148,7 +1148,7 @@
|
|||
(defun byte-optimize-featurep (form)
|
||||
;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so we
|
||||
;; can safely optimize away this test.
|
||||
(if (member (cdr-safe form) '((quote xemacs) (quote sxemacs)))
|
||||
(if (member (cdr-safe form) '(((quote xemacs)) ((quote sxemacs))))
|
||||
nil
|
||||
form))
|
||||
|
||||
|
|
|
@ -371,7 +371,8 @@ Elements of the list may be:
|
|||
(const obsolete) (const noruntime)
|
||||
(const cl-functions) (const interactive-only)
|
||||
(const make-local) (const mapcar))))
|
||||
(put 'byte-compile-warnings 'safe-local-variable 'byte-compile-warnings-safe-p)
|
||||
;;;###autoload(put 'byte-compile-warnings 'safe-local-variable 'byte-compile-warnings-safe-p)
|
||||
|
||||
;;;###autoload
|
||||
(defun byte-compile-warnings-safe-p (x)
|
||||
(or (booleanp x)
|
||||
|
|
|
@ -1182,7 +1182,7 @@ generating a buffered list of errors."
|
|||
;; Override some bindings
|
||||
(define-key map "\C-\M-x" 'checkdoc-eval-defun)
|
||||
(define-key map "\C-x`" 'checkdoc-continue)
|
||||
(if (not (string-match "XEmacs" emacs-version))
|
||||
(if (not (featurep 'xemacs))
|
||||
(define-key map [menu-bar emacs-lisp eval-buffer]
|
||||
'checkdoc-eval-current-buffer))
|
||||
;; Add some new bindings under C-c ?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue