From 18ea7605c06791641a465cd209a3de760d560863 Mon Sep 17 00:00:00 2001 From: Jimmy Aguilar Mena Date: Wed, 3 Apr 2019 12:36:46 +0200 Subject: [PATCH] ;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. --- doc/emacs/display.texi | 2 +- etc/NEWS | 2 +- src/xdisp.c | 7 +++---- 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"); -- 2.39.2