
63b04c11d5
Fix copyright years by hand5c7dd8a783
Update copyright year to 2018220a9ecba1
Merge from Gnulib312c565566
Don't add empty keyboard macro to macro ring (Bug#24992)39ca289a7a
Allow customization of decoding of "man" commandf8240815ea
* etc/NEWS: Add security consideration note on passphrase ...0c78822c70
Fix subtle problem with scroll-down when scroll-margin is ...acd289c5a4
Fix problems with indexing in User manualb240c7846b
* lisp/help.el (describe-key): Only (copy-sequence elt) wh...e879a5444a
* src/buffer.c (Frestore_buffer_modified_p): Fix bug#2984681b1028b63
Improve documentation of 'inhibit-modification-hooks' and ...7175496d7a
Fix doc string of 'enable-recursive-minibuffers'5b38406491
Fix documentation of delsel and of killing text # Conflicts: # etc/NEWS # etc/refcards/ru-refcard.tex
33 lines
1.1 KiB
EmacsLisp
33 lines
1.1 KiB
EmacsLisp
;;; gnus-tests.el --- Wrapper for the Gnus tests
|
|
|
|
;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
|
|
|
|
;; Author: Teodor Zlatanov <tzz@lifelogs.com>
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; This file should contain nothing but requires for all the Gnus
|
|
;; tests that are not standalone.
|
|
|
|
;;; Code:
|
|
;; registry.el is required by gnus-registry.el but this way we're explicit.
|
|
(require 'registry)
|
|
(require 'gnus-registry)
|
|
|
|
(provide 'gnus-tests)
|
|
;;; gnus-tests.el ends here
|