summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Aguilar Mena <spacibba@aol.com>2019-04-03 12:36:46 +0200
committerJimmy Aguilar Mena <spacibba@aol.com>2019-05-03 23:34:29 +0200
commit0750b6337a5f57eec49934893e64b8d8fc93bd9d (patch)
treea707fb580a5afba5ec1be77b9beffd0d6eb13b3c
parentf634a2fbfac69a2942a92ef61752bc5cb0049668 (diff)
downloademacs-0750b6337a5f57eec49934893e64b8d8fc93bd9d.tar.gz
;Small changes in the documentation
*src/xdisp.c: Fixed docstring for display-fill-column-indicator-column *etc/NEWS: Concordance fix in the display-fill-column-indicator part. *doc/emacs/display.texi: Name mismatch fix.
-rw-r--r--doc/emacs/display.texi2
-rw-r--r--etc/NEWS2
-rw-r--r--src/xdisp.c7
3 files changed, 5 insertions, 6 deletions
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index 38413a7543a..e1467a3e0be 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -1141,7 +1141,7 @@ right-to-left paragraphs.
@node Displaying Boundaries
@section Displaying Boundaries
-@cindex mode, fill-column-indicator
+@cindex mode, display-fill-column-indicator
@findex display-fill-column-indicator-mode
@findex global-display-fill-column-indicator-mode
Emacs can add an indicator to display a fill column position. The
diff --git a/etc/NEWS b/etc/NEWS
index 444c059f05e..80d7f4f24c8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -350,7 +350,7 @@ Customize the buffer-local variables 'display-fill-column-indicator'
and 'display-fill-column-indicator-character' to activate the
indicator.
-The indicators is not displayed at all in minibuffer windows and
+The indicator is not displayed at all in minibuffer windows and
in tooltips, as it is not useful there.
There are 2 new buffer local variables and 1 face to customize this
diff --git a/src/xdisp.c b/src/xdisp.c
index 721e8ae125c..25ef98b49cf 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -33411,10 +33411,9 @@ either `relative' or `visual'. */);
Fmake_variable_buffer_local (Qdisplay_fill_column_indicator);
DEFVAR_LISP ("display-fill-column-indicator-column", Vdisplay_fill_column_indicator_column,
- doc: /* Column to draw the fill column indicator when
-`display-fill-column-indicator' is non-nil. The default value is t
-which means that the indicator will use the `fill-column' variable. If
-a numeric value is set, the indicator will be drawn in that column
+ doc: /* Column for indicator when `display-fill-column-indicator' is non-nil.
+The default value is t which means that the indicator will use the `fill-column' variable.
+If a numeric value is set, the indicator will be drawn in that column
independently of the `fill-column' value. */);
Vdisplay_fill_column_indicator_column = Qt;
DEFSYM (Qdisplay_fill_column_indicator_column, "display-fill-column-indicator-column");