aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2018-07-13 09:28:15 -0700
committerGlenn Morris2018-07-13 09:28:15 -0700
commitcda7e1850f2f19a5025fd163ff2c6c6cba275acf (patch)
tree1fdb0014a632e936da813128ead6353051436cbd /doc
parent1013e0392b78ee0e2199fb51859dc9e939315f9b (diff)
parent17ebb6e5ae9cdd2586d1b4d6f2347ae09c6f653f (diff)
downloademacs-cda7e1850f2f19a5025fd163ff2c6c6cba275acf.tar.gz
emacs-cda7e1850f2f19a5025fd163ff2c6c6cba275acf.zip
Merge from origin/emacs-26
17ebb6e (origin/emacs-26) Use consistent function names in thread-tes... 1c86229 Fix format error in Faccept_process_output b38b91a Lessen stack consumption in recursive read1 3eb4603 Match w32 paths in grep sans --null hits (Bug#32051) 5cc7c4b Fix previous make-network-process change d6a1b69 Another documentation improvement in flyspell.el 9b49a8e Improve documentation of Flyspell 3744fda Provide feature 'threads ef9025f Save the server alias on reconnect (Bug#29657) db3874b Refer to "proper lists" instead of "true lists" 35e0305 Avoid turning on the global-minor-mode recursively 51bf4e4 Fix Bug#32085
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/fixit.texi14
-rw-r--r--doc/lispref/lists.texi23
-rw-r--r--doc/lispref/sequences.texi2
-rw-r--r--doc/misc/tramp.texi4
4 files changed, 27 insertions, 16 deletions
diff --git a/doc/emacs/fixit.texi b/doc/emacs/fixit.texi
index ec26a35d682..8277278f521 100644
--- a/doc/emacs/fixit.texi
+++ b/doc/emacs/fixit.texi
@@ -427,11 +427,15 @@ dictionary.
427@cindex mode, Flyspell 427@cindex mode, Flyspell
428@findex flyspell-mode 428@findex flyspell-mode
429 Flyspell mode is a minor mode that performs automatic spell-checking 429 Flyspell mode is a minor mode that performs automatic spell-checking
430as you type. When it finds a word that it does not recognize, it 430of the text you type as you type it. When it finds a word that it
431highlights that word. Type @kbd{M-x flyspell-mode} to toggle Flyspell 431does not recognize, it highlights that word. Type @kbd{M-x
432mode in the current buffer. To enable Flyspell mode in all text mode 432flyspell-mode} to toggle Flyspell mode in the current buffer. To
433buffers, add @code{flyspell-mode} to @code{text-mode-hook}. 433enable Flyspell mode in all text mode buffers, add
434@xref{Hooks}. 434@code{flyspell-mode} to @code{text-mode-hook}. @xref{Hooks}. Note
435that, as Flyspell mode needs to check each word across which you move,
436it will slow down cursor motion and scrolling commands. It also
437doesn't automatically check the text you didn't type or move across;
438use @code{flyspell-region} or @code{flyspell-buffer} for that.
435 439
436@findex flyspell-correct-word 440@findex flyspell-correct-word
437@findex flyspell-auto-correct-word 441@findex flyspell-auto-correct-word
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 57cefeac962..b7bb3cf6be1 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -50,16 +50,19 @@ convention; at the level of cons cells, the @sc{car} and @sc{cdr}
50slots have similar properties). Hence, the @sc{cdr} slot of each cons 50slots have similar properties). Hence, the @sc{cdr} slot of each cons
51cell in a list refers to the following cons cell. 51cell in a list refers to the following cons cell.
52 52
53@cindex proper list
53@cindex true list 54@cindex true list
54 Also by convention, the @sc{cdr} of the last cons cell in a list is 55 Also by convention, the @sc{cdr} of the last cons cell in a list is
55@code{nil}. We call such a @code{nil}-terminated structure a 56@code{nil}. We call such a @code{nil}-terminated structure a
56@dfn{true list}. In Emacs Lisp, the symbol @code{nil} is both a 57@dfn{proper list}@footnote{It is sometimes also referred to as a
57symbol and a list with no elements. For convenience, the symbol 58@dfn{true list}, but we generally do not use this terminology in this
58@code{nil} is considered to have @code{nil} as its @sc{cdr} (and also 59manual.}. In Emacs Lisp, the symbol @code{nil} is both a symbol and a
59as its @sc{car}). 60list with no elements. For convenience, the symbol @code{nil} is
60 61considered to have @code{nil} as its @sc{cdr} (and also as its
61 Hence, the @sc{cdr} of a true list is always a true list. The 62@sc{car}).
62@sc{cdr} of a nonempty true list is a true list containing all the 63
64 Hence, the @sc{cdr} of a proper list is always a proper list. The
65@sc{cdr} of a nonempty proper list is a proper list containing all the
63elements except the first. 66elements except the first.
64 67
65@cindex dotted list 68@cindex dotted list
@@ -71,10 +74,10 @@ Pair Notation}). There is one other possibility: some cons cell's
71@sc{cdr} could point to one of the previous cons cells in the list. 74@sc{cdr} could point to one of the previous cons cells in the list.
72We call that structure a @dfn{circular list}. 75We call that structure a @dfn{circular list}.
73 76
74 For some purposes, it does not matter whether a list is true, 77 For some purposes, it does not matter whether a list is proper,
75circular or dotted. If a program doesn't look far enough down the 78circular or dotted. If a program doesn't look far enough down the
76list to see the @sc{cdr} of the final cons cell, it won't care. 79list to see the @sc{cdr} of the final cons cell, it won't care.
77However, some functions that operate on lists demand true lists and 80However, some functions that operate on lists demand proper lists and
78signal errors if given a dotted list. Most functions that try to find 81signal errors if given a dotted list. Most functions that try to find
79the end of a list enter infinite loops if given a circular list. 82the end of a list enter infinite loops if given a circular list.
80 83
@@ -538,7 +541,7 @@ object. The final argument is not copied or converted; it becomes the
538is itself a list, then its elements become in effect elements of the 541is itself a list, then its elements become in effect elements of the
539result list. If the final element is not a list, the result is a 542result list. If the final element is not a list, the result is a
540dotted list since its final @sc{cdr} is not @code{nil} as required 543dotted list since its final @sc{cdr} is not @code{nil} as required
541in a true list. 544in a proper list (@pxref{Cons Cells}).
542@end defun 545@end defun
543 546
544 Here is an example of using @code{append}: 547 Here is an example of using @code{append}:
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index b98889eb099..be7a4020625 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -1355,7 +1355,7 @@ each initialized to @var{object}.
1355@defun vconcat &rest sequences 1355@defun vconcat &rest sequences
1356@cindex copying vectors 1356@cindex copying vectors
1357This function returns a new vector containing all the elements of 1357This function returns a new vector containing all the elements of
1358@var{sequences}. The arguments @var{sequences} may be true lists, 1358@var{sequences}. The arguments @var{sequences} may be proper lists,
1359vectors, strings or bool-vectors. If no @var{sequences} are given, 1359vectors, strings or bool-vectors. If no @var{sequences} are given,
1360the empty vector is returned. 1360the empty vector is returned.
1361 1361
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index d8f4b41e2f2..f2d7786940f 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -1094,6 +1094,10 @@ syntax requires a leading volume (share) name, for example:
1094based on standard protocols, such as HTTP@. @option{davs} does the same 1094based on standard protocols, such as HTTP@. @option{davs} does the same
1095but with SSL encryption. Both methods support the port numbers. 1095but with SSL encryption. Both methods support the port numbers.
1096 1096
1097Paths being part of the WebDAV volume to be mounted by GVFS, as it is
1098common for OwnCloud or NextCloud file names, are not supported by
1099these methods.
1100
1097@item @option{gdrive} 1101@item @option{gdrive}
1098@cindex method @option{gdrive} 1102@cindex method @option{gdrive}
1099@cindex @option{gdrive} method 1103@cindex @option{gdrive} method