aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/streams.texi9
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/cl.texi5
4 files changed, 17 insertions, 6 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 510f9e983c3..4d4d0b529cc 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12014-10-08 Leo Liu <sdl.web@gmail.com>
2
3 * streams.texi (Output Functions): Document new argument ENSURE to
4 terpri. (Bug#18652)
5
12014-10-04 Martin Rudalics <rudalics@gmx.at> 62014-10-04 Martin Rudalics <rudalics@gmx.at>
2 7
3 * display.texi (Scroll Bars): Add description of horizontal scroll 8 * display.texi (Scroll Bars): Add description of horizontal scroll
diff --git a/doc/lispref/streams.texi b/doc/lispref/streams.texi
index 1d549ae8916..c287b617713 100644
--- a/doc/lispref/streams.texi
+++ b/doc/lispref/streams.texi
@@ -615,10 +615,13 @@ spacing between calls.
615@end example 615@end example
616@end defun 616@end defun
617 617
618@defun terpri &optional stream 618@defun terpri &optional stream ensure
619@cindex newline in print 619@cindex newline in print
620This function outputs a newline to @var{stream}. The name stands 620This function outputs a newline to @var{stream}. The name stands for
621for ``terminate print''. 621``terminate print''. If @var{ensure} is non-nil no newline is printed
622if @var{stream} is already at the beginning of a line. Note in this
623case @var{stream} can not be a function and an error is signalled if
624it is. This function returns @code{t} if a newline is printed.
622@end defun 625@end defun
623 626
624@defun write-char character &optional stream 627@defun write-char character &optional stream
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 050c3339c8b..70207de3b3b 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12014-10-08 Leo Liu <sdl.web@gmail.com>
2
3 * cl.texi (Porting Common Lisp): Remove parse-integer.
4
12014-10-06 Ulf Jasper <ulf.jasper@web.de> 52014-10-06 Ulf Jasper <ulf.jasper@web.de>
2 6
3 * newsticker.texi (Supported Formats): Fix order of subheading and 7 * newsticker.texi (Supported Formats): Fix order of subheading and
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 04a0e5725e8..c15918afc4e 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -4707,9 +4707,8 @@ exactly the same thing, so this package has not bothered to
4707implement a Common Lisp-style @code{make-list}. 4707implement a Common Lisp-style @code{make-list}.
4708 4708
4709@item 4709@item
4710A few more notable Common Lisp features not included in this 4710A few more notable Common Lisp features not included in this package:
4711package: @code{compiler-let}, @code{tagbody}, @code{prog}, 4711@code{compiler-let}, @code{prog}, @code{ldb/dpb}, @code{cerror}.
4712@code{ldb/dpb}, @code{parse-integer}, @code{cerror}.
4713 4712
4714@item 4713@item
4715Recursion. While recursion works in Emacs Lisp just like it 4714Recursion. While recursion works in Emacs Lisp just like it