diff options
Diffstat (limited to 'lisp/cus-start.el')
| -rw-r--r-- | lisp/cus-start.el | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 744fe7f69ee..c28b8a147fc 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -584,6 +584,38 @@ since it could result in memory overflow and make Emacs crash." | |||
| 584 | (const :tag "Grow only" :value grow-only)) | 584 | (const :tag "Grow only" :value grow-only)) |
| 585 | "25.1") | 585 | "25.1") |
| 586 | (display-raw-bytes-as-hex display boolean "26.1") | 586 | (display-raw-bytes-as-hex display boolean "26.1") |
| 587 | (display-line-numbers display-line-numbers | ||
| 588 | (choice | ||
| 589 | (const :tag "Off (nil)" :value nil) | ||
| 590 | (const :tag "Absolute line numbers" | ||
| 591 | :value t) | ||
| 592 | (const :tag "Relative line numbers" | ||
| 593 | :value relative) | ||
| 594 | (const :tag "Visually relative line numbers" | ||
| 595 | :value visual)) | ||
| 596 | "26.1") | ||
| 597 | (display-line-numbers-width display-line-numbers | ||
| 598 | (choice | ||
| 599 | (const :tag "Dynamically computed" | ||
| 600 | :value nil) | ||
| 601 | (integer :menu-tag "Fixed number of columns" | ||
| 602 | :value 2 | ||
| 603 | :format "%v")) | ||
| 604 | "26.1") | ||
| 605 | (display-line-numbers-current-absolute display-line-numbers | ||
| 606 | (choice | ||
| 607 | (const :tag "Display actual number of current line" | ||
| 608 | :value t) | ||
| 609 | (const :tag "Display zero as number of current line" | ||
| 610 | :value nil)) | ||
| 611 | "26.1") | ||
| 612 | (display-line-numbers-widen display-line-numbers | ||
| 613 | (choice | ||
| 614 | (const :tag "Disregard narrowing when calculating line numbers" | ||
| 615 | :value t) | ||
| 616 | (const :tag "Count lines from beginning of narrowed region" | ||
| 617 | :value nil)) | ||
| 618 | "26.1") | ||
| 587 | ;; xfaces.c | 619 | ;; xfaces.c |
| 588 | (scalable-fonts-allowed display boolean "22.1") | 620 | (scalable-fonts-allowed display boolean "22.1") |
| 589 | ;; xfns.c | 621 | ;; xfns.c |