summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2024-11-01 22:54:11 +0100
committerStefan Kangas <stefankangas@gmail.com>2024-11-01 23:56:07 +0100
commit471716c67d0d00a2e90dd7dfbc2bb88820a248a2 (patch)
tree85b405ead9bc561f157701b63bb195c5fb50cbd2
parent673c906a5b7255987c09f534de45e555fc7fc9ae (diff)
Mark unused reftex variable as obsolete
* lisp/textmodes/reftex-vars.el (reftex-toc-split-windows-horizontally-fraction): Mark unused variable as obsolete in favor of 'reftex-toc-split-windows-fraction'.
-rw-r--r--lisp/textmodes/reftex-vars.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el
index 791b10412c9..aac735dc771 100644
--- a/lisp/textmodes/reftex-vars.el
+++ b/lisp/textmodes/reftex-vars.el
@@ -382,9 +382,6 @@ See also `reftex-toc-split-windows-horizontally'."
:group 'reftex-table-of-contents-browser
:type 'number)
-(defvar reftex-toc-split-windows-horizontally-fraction 0.5
- "This variable is obsolete, use `reftex-toc-split-windows-fraction' instead.")
-
(defcustom reftex-toc-keep-other-windows t
"Non-nil means, split the selected window to display the *toc* buffer.
This helps to keep the window configuration, but makes the *toc* small.
@@ -2112,6 +2109,9 @@ the following construct: \\bbb [xxx] {aaa}."
:group 'reftex-miscellaneous-configurations
:type 'hook)
+(defvar reftex-toc-split-windows-horizontally-fraction 0.5)
+(make-obsolete-variable 'reftex-toc-split-windows-horizontally-fraction
+ 'reftex-toc-split-windows-fraction "31.1")
(provide 'reftex-vars)