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 /src | |
| 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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 7 |
1 files changed, 3 insertions, 4 deletions
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"); |