diff options
| author | Jimmy Aguilar Mena | 2019-04-03 12:36:46 +0200 |
|---|---|---|
| committer | Jimmy Aguilar Mena | 2019-05-05 16:27:37 +0200 |
| commit | 18ea7605c06791641a465cd209a3de760d560863 (patch) | |
| tree | 02c9c64cd8509d0071937f86719e348df0ecde83 | |
| parent | d8089ad2c2b2fdb1b4cb972646ab85bb7d1ea504 (diff) | |
| download | emacs-18ea7605c06791641a465cd209a3de760d560863.tar.gz emacs-18ea7605c06791641a465cd209a3de760d560863.zip | |
;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.texi | 2 | ||||
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | 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. | |||
| 1141 | @node Displaying Boundaries | 1141 | @node Displaying Boundaries |
| 1142 | @section Displaying Boundaries | 1142 | @section Displaying Boundaries |
| 1143 | 1143 | ||
| 1144 | @cindex mode, fill-column-indicator | 1144 | @cindex mode, display-fill-column-indicator |
| 1145 | @findex display-fill-column-indicator-mode | 1145 | @findex display-fill-column-indicator-mode |
| 1146 | @findex global-display-fill-column-indicator-mode | 1146 | @findex global-display-fill-column-indicator-mode |
| 1147 | Emacs can add an indicator to display a fill column position. The | 1147 | Emacs can add an indicator to display a fill column position. The |
| @@ -350,7 +350,7 @@ Customize the buffer-local variables 'display-fill-column-indicator' | |||
| 350 | and 'display-fill-column-indicator-character' to activate the | 350 | and 'display-fill-column-indicator-character' to activate the |
| 351 | indicator. | 351 | indicator. |
| 352 | 352 | ||
| 353 | The indicators is not displayed at all in minibuffer windows and | 353 | The indicator is not displayed at all in minibuffer windows and |
| 354 | in tooltips, as it is not useful there. | 354 | in tooltips, as it is not useful there. |
| 355 | 355 | ||
| 356 | There are 2 new buffer local variables and 1 face to customize this | 356 | 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'. */); | |||
| 33411 | Fmake_variable_buffer_local (Qdisplay_fill_column_indicator); | 33411 | Fmake_variable_buffer_local (Qdisplay_fill_column_indicator); |
| 33412 | 33412 | ||
| 33413 | DEFVAR_LISP ("display-fill-column-indicator-column", Vdisplay_fill_column_indicator_column, | 33413 | DEFVAR_LISP ("display-fill-column-indicator-column", Vdisplay_fill_column_indicator_column, |
| 33414 | doc: /* Column to draw the fill column indicator when | 33414 | doc: /* Column for indicator when `display-fill-column-indicator' is non-nil. |
| 33415 | `display-fill-column-indicator' is non-nil. The default value is t | 33415 | The default value is t which means that the indicator will use the `fill-column' variable. |
| 33416 | which means that the indicator will use the `fill-column' variable. If | 33416 | If a numeric value is set, the indicator will be drawn in that column |
| 33417 | a numeric value is set, the indicator will be drawn in that column | ||
| 33418 | independently of the `fill-column' value. */); | 33417 | independently of the `fill-column' value. */); |
| 33419 | Vdisplay_fill_column_indicator_column = Qt; | 33418 | Vdisplay_fill_column_indicator_column = Qt; |
| 33420 | DEFSYM (Qdisplay_fill_column_indicator_column, "display-fill-column-indicator-column"); | 33419 | DEFSYM (Qdisplay_fill_column_indicator_column, "display-fill-column-indicator-column"); |