diff options
| author | Juri Linkov | 2019-09-22 23:40:04 +0300 |
|---|---|---|
| committer | Juri Linkov | 2019-09-22 23:40:04 +0300 |
| commit | 39255b9b4de0b036568b64d7170ba8076d96be1d (patch) | |
| tree | 66e9ca5f71b1f1f47e1cf35106ebc1e0454f3aef /src | |
| parent | ab2f42cad5259db6626f0da1eb01421c5214c799 (diff) | |
| download | emacs-39255b9b4de0b036568b64d7170ba8076d96be1d.tar.gz emacs-39255b9b4de0b036568b64d7170ba8076d96be1d.zip | |
Improve customizability and better tab separators.
* lisp/tab-bar.el (tab-bar-tabs-function): New defvar.
* lisp/tab-line.el (tab-line-tab-name-function)
(tab-line-tabs-function): New defvars.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 197493bfbb8..0fc387b8ffb 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -12764,7 +12764,7 @@ build_desired_tab_bar_string (struct frame *f) | |||
| 12764 | caption = Qnil; | 12764 | caption = Qnil; |
| 12765 | 12765 | ||
| 12766 | /* Prepare F->desired_tab_bar_string. Make a new string. */ | 12766 | /* Prepare F->desired_tab_bar_string. Make a new string. */ |
| 12767 | fset_desired_tab_bar_string (f, build_string (" ")); | 12767 | fset_desired_tab_bar_string (f, build_string ("")); |
| 12768 | 12768 | ||
| 12769 | /* Put a `display' property on the string for the captions to display, | 12769 | /* Put a `display' property on the string for the captions to display, |
| 12770 | put a `menu_item' property on tab-bar items with a value that | 12770 | put a `menu_item' property on tab-bar items with a value that |