diff options
| author | Leo Liu | 2014-10-09 06:05:48 +0800 |
|---|---|---|
| committer | Leo Liu | 2014-10-09 06:05:48 +0800 |
| commit | 2dbd7a37a809e2dcef6c8e7323ac15c98b051cd9 (patch) | |
| tree | 3325d872642948f831a9acb971a2c06ce7d10b4d /test | |
| parent | 289a43910e29999f125d76a48602b63cea7ed9b9 (diff) | |
| download | emacs-2dbd7a37a809e2dcef6c8e7323ac15c98b051cd9.tar.gz emacs-2dbd7a37a809e2dcef6c8e7323ac15c98b051cd9.zip | |
Enhance terpri to allow conditionally output a newline
* doc/lispref/streams.texi (Output Functions): Document new argument ENSURE to
terpri.
* doc/misc/cl.texi (Porting Common Lisp): Remove parse-integer.
* lisp/emacs-lisp/cl-extra.el (cl-fresh-line): New function.
* src/keymap.c (describe_vector_princ):
* src/keyboard.c (Fcommand_error_default_function): Adapt to change to
Fterpri.
* src/print.c (printchar_stdout_last): Declare.
(printchar): Record the last char written to stdout.
(Fterpri): Add optional argument ENSURE.
* test/automated/print-tests.el: New file.
(terpri): Tests for terpri. (Bug#18652)
Diffstat (limited to 'test')
| -rw-r--r-- | test/ChangeLog | 5 | ||||
| -rw-r--r-- | test/automated/print-tests.el | 56 |
2 files changed, 61 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 3d930be56c1..5c2032e7e85 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-10-08 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * automated/print-tests.el: New file. | ||
| 4 | (terpri): Tests for terpri. (Bug#18652) | ||
| 5 | |||
| 1 | 2014-10-06 Glenn Morris <rgm@gnu.org> | 6 | 2014-10-06 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * automated/icalendar-tests.el (icalendar--calendar-style): | 8 | * automated/icalendar-tests.el (icalendar--calendar-style): |
diff --git a/test/automated/print-tests.el b/test/automated/print-tests.el new file mode 100644 index 00000000000..1974cc452a6 --- /dev/null +++ b/test/automated/print-tests.el | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | ;;; print-tests.el --- tests for src/print.c -*- lexical-binding: t; -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2014 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; This program is free software; you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 10 | ;; (at your option) any later version. | ||
| 11 | |||
| 12 | ;; This program is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | ;;; Code: | ||
| 21 | |||
| 22 | (require 'ert) | ||
| 23 | |||
| 24 | (ert-deftest terpri () | ||
| 25 | (should (string= (with-output-to-string | ||
| 26 | (princ 'abc) | ||
| 27 | (should (terpri nil t))) | ||
| 28 | "abc\n")) | ||
| 29 | (should (string= (with-output-to-string | ||
| 30 | (should-not (terpri nil t)) | ||
| 31 | (princ 'xyz)) | ||
| 32 | "xyz")) | ||
| 33 | (message nil) | ||
| 34 | (if noninteractive | ||
| 35 | (progn (should (terpri nil t)) | ||
| 36 | (should-not (terpri nil t)) | ||
| 37 | (princ 'abc) | ||
| 38 | (should (terpri nil t)) | ||
| 39 | (should-not (terpri nil t))) | ||
| 40 | (should (string= (progn (should-not (terpri nil t)) | ||
| 41 | (princ 'abc) | ||
| 42 | (should (terpri nil t)) | ||
| 43 | (current-message)) | ||
| 44 | "abc\n"))) | ||
| 45 | (let ((standard-output | ||
| 46 | (with-current-buffer (get-buffer-create "*terpri-test*") | ||
| 47 | (insert "--------") | ||
| 48 | (point-max-marker)))) | ||
| 49 | (should (terpri nil t)) | ||
| 50 | (should-not (terpri nil t)) | ||
| 51 | (should (string= (with-current-buffer (marker-buffer standard-output) | ||
| 52 | (buffer-string)) | ||
| 53 | "--------\n")))) | ||
| 54 | |||
| 55 | (provide 'print-tests) | ||
| 56 | ;;; print-tests.el ends here | ||