diff options
| author | Thierry Volpiatto | 2019-11-21 21:01:53 +0100 |
|---|---|---|
| committer | Thierry Volpiatto | 2019-11-21 21:01:53 +0100 |
| commit | 86d8d9589370e8786c2cb245dad8527494009ac2 (patch) | |
| tree | 7cee88add34b97cc12396528263db85490f025b2 /doc | |
| parent | 5a62c4b49ca1ac45d576f55d266750b7d1d6668a (diff) | |
| parent | 6c9c45bfabaa06bd604c95e194102143b87f700e (diff) | |
| download | emacs-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.texi | 14 | ||||
| -rw-r--r-- | doc/lispref/objects.texi | 3 |
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 |
| 964 | Display the changes that will be sent by the next ``push'' operation | 964 | Display 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 | ||
| 968 | Display the history of changes made in the region of file visited by | ||
| 969 | the 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 |
| 1071 | A useful variant of examining changes is provided by the command | 1075 | A 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 |
| 1073 | a @file{*VC-history*} buffer with the history of changes to the region | 1077 | a @file{*VC-history*} buffer with the history of changes made in the region |
| 1074 | of the current file between point and the mark (@pxref{Mark}). The | 1078 | of the current buffer's file between point and the mark (@pxref{Mark}). The |
| 1075 | history of changes includes the commit log messages and also the | 1079 | history of changes includes the commit log messages and also the |
| 1076 | changes themselves in the Diff format. | 1080 | changes themselves in the Diff format. |
| 1077 | 1081 | ||
| 1078 | Invoke this command after marking the region of the current file in | 1082 | Invoke this command after marking in the current buffer the region in |
| 1079 | whose changes you are interested. In the @file{*VC-history*} buffer | 1083 | whose changes you are interested. In the @file{*VC-history*} buffer |
| 1080 | it pops up, you can use all of the commands available in the | 1084 | it 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 |
| 1082 | defined by Diff mode (@pxref{Diff Mode}). | 1086 | defined by Diff mode (@pxref{Diff Mode}). |
| 1083 | 1087 | ||
| 1084 | This command is currently available only with Git. | 1088 | This 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 | |||
| 123 | The printed representation of an interned symbol whose name is an | 123 | The printed representation of an interned symbol whose name is an |
| 124 | empty string (@pxref{Symbol Type}). | 124 | empty string (@pxref{Symbol Type}). |
| 125 | 125 | ||
| 126 | @item #' | ||
| 127 | This is a shortcut for @code{function}, see @ref{Anonymous Functions}. | ||
| 128 | |||
| 126 | @item #: | 129 | @item #: |
| 127 | The printed representation of an uninterned symbol whose name is | 130 | The 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}). |