aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorThierry Volpiatto2019-11-21 21:01:53 +0100
committerThierry Volpiatto2019-11-21 21:01:53 +0100
commit86d8d9589370e8786c2cb245dad8527494009ac2 (patch)
tree7cee88add34b97cc12396528263db85490f025b2 /doc
parent5a62c4b49ca1ac45d576f55d266750b7d1d6668a (diff)
parent6c9c45bfabaa06bd604c95e194102143b87f700e (diff)
downloademacs-86d8d9589370e8786c2cb245dad8527494009ac2.tar.gz
emacs-86d8d9589370e8786c2cb245dad8527494009ac2.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/maintaining.texi14
-rw-r--r--doc/lispref/objects.texi3
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index ef448dd595b..33a1ec0be07 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -963,6 +963,10 @@ Display the changes that a ``pull'' operation will retrieve
963@item C-x v O 963@item C-x v O
964Display the changes that will be sent by the next ``push'' operation 964Display the changes that will be sent by the next ``push'' operation
965(@code{vc-log-outgoing}). 965(@code{vc-log-outgoing}).
966
967@item C-x v h
968Display the history of changes made in the region of file visited by
969the current buffer (@code{vc-region-history}).
966@end table 970@end table
967 971
968@kindex C-x v l 972@kindex C-x v l
@@ -1068,20 +1072,20 @@ buffer. However, RCS, SCCS, CVS, and SRC do not support this feature.
1068 1072
1069@kindex C-x v h 1073@kindex C-x v h
1070@findex vc-region-history 1074@findex vc-region-history
1071A useful variant of examining changes is provided by the command 1075A useful variant of examining history of changes is provided by the command
1072@kbd{vc-region-history} (by default bound to @kbd{C-x v h}), which shows 1076@kbd{vc-region-history} (by default bound to @kbd{C-x v h}), which shows
1073a @file{*VC-history*} buffer with the history of changes to the region 1077a @file{*VC-history*} buffer with the history of changes made in the region
1074of the current file between point and the mark (@pxref{Mark}). The 1078of the current buffer's file between point and the mark (@pxref{Mark}). The
1075history of changes includes the commit log messages and also the 1079history of changes includes the commit log messages and also the
1076changes themselves in the Diff format. 1080changes themselves in the Diff format.
1077 1081
1078Invoke this command after marking the region of the current file in 1082Invoke this command after marking in the current buffer the region in
1079whose changes you are interested. In the @file{*VC-history*} buffer 1083whose changes you are interested. In the @file{*VC-history*} buffer
1080it pops up, you can use all of the commands available in the 1084it pops up, you can use all of the commands available in the
1081@file{*vc-change-log*} buffer described above, and also the commands 1085@file{*vc-change-log*} buffer described above, and also the commands
1082defined by Diff mode (@pxref{Diff Mode}). 1086defined by Diff mode (@pxref{Diff Mode}).
1083 1087
1084This command is currently available only with Git. 1088This command is currently available only with Git and Mercurial (hg).
1085 1089
1086@node VC Undo 1090@node VC Undo
1087@subsection Undoing Version Control Actions 1091@subsection Undoing Version Control Actions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index e07dc2ed069..d9971f6839e 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -123,6 +123,9 @@ Objects that have no read syntax are presented like this
123The printed representation of an interned symbol whose name is an 123The printed representation of an interned symbol whose name is an
124empty string (@pxref{Symbol Type}). 124empty string (@pxref{Symbol Type}).
125 125
126@item #'
127This is a shortcut for @code{function}, see @ref{Anonymous Functions}.
128
126@item #: 129@item #:
127The printed representation of an uninterned symbol whose name is 130The printed representation of an uninterned symbol whose name is
128@var{foo} is @samp{#:@var{foo}} (@pxref{Symbol Type}). 131@var{foo} is @samp{#:@var{foo}} (@pxref{Symbol Type}).