summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2019-01-04 17:34:00 +0100
committerMartin Rudalics <rudalics@gmx.at>2019-01-04 17:34:00 +0100
commita058edae5b02a5265524140e42004a84f5c86907 (patch)
treed8f16c868c5f55959e513bbd9f3a5cb0c448f918
parent775517307d9d5bb32cf6d58ae652e1e819aa95c3 (diff)
downloademacs-a058edae5b02a5265524140e42004a84f5c86907.tar.gz
Fix definition of Qwindow_point_insertion_type (Bug#33871)
* src/window.c (Qwindow_point_insertion_type): Fix definition (Bug#33871).
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 148200d5f53..7b879d0e1eb 100644
--- a/src/window.c
+++ b/src/window.c
@@ -7646,7 +7646,7 @@ on their symbols to be controlled by this variable. */);
DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type,
doc: /* Type of marker to use for `window-point'. */);
Vwindow_point_insertion_type = Qnil;
- DEFSYM (Qwindow_point_insertion_type, "window_point_insertion_type");
+ DEFSYM (Qwindow_point_insertion_type, "window-point-insertion-type");
DEFVAR_LISP ("window-configuration-change-hook",
Vwindow_configuration_change_hook,