aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesper Harder <[email protected]>2005-01-30 16:39:16 +0000
committerJesper Harder <[email protected]>2005-01-30 16:39:16 +0000
commit7bf72fa6f6c24219eb242b70ab887e4dc9138781 (patch)
tree7f2908dfcd137451056cf30677bae079e365d22a
parent70b96d19f12a96e4983db214b8d3fa6c6ba26525 (diff)
(syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation.
(syms_of_macterm) <mac-emulate-three-button-mouse>: do.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/macterm.c14
2 files changed, 12 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 97f88d2b3f..d1425eba3b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-30 Jesper Harder <[email protected]>
+
+ * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation.
+ (syms_of_macterm) <mac-emulate-three-button-mouse>: do.
+
2005-01-29 Luc Teirlinck <[email protected]>
* undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
diff --git a/src/macterm.c b/src/macterm.c
index 9304a2d62f..9dfe67bd04 100644
--- a/src/macterm.c
+++ b/src/macterm.c
@@ -9902,18 +9902,18 @@ nil then the key will act as the normal Mac option modifier. */);
DEFVAR_LISP ("mac-reverse-ctrl-meta", &Vmac_reverse_ctrl_meta,
doc: /* Non-nil means that the control and meta keys are reversed. This is
- useful for non-standard keyboard layouts. */);
+useful for non-standard keyboard layouts. */);
Vmac_reverse_ctrl_meta = Qnil;
DEFVAR_LISP ("mac-emulate-three-button-mouse",
&Vmac_emulate_three_button_mouse,
doc: /* t means that when the option-key is held down while pressing the
- mouse button, the click will register as mouse-2 and while the
- command-key is held down, the click will register as mouse-3.
- 'reverse means that the the option-key will register for mouse-3
- and the command-key will register for mouse-2. nil means that
- not emulation should be done and the modifiers should be placed
- on the mouse-1 event. */);
+mouse button, the click will register as mouse-2 and while the
+command-key is held down, the click will register as mouse-3.
+'reverse means that the the option-key will register for mouse-3
+and the command-key will register for mouse-2. nil means that
+no emulation should be done and the modifiers should be placed
+on the mouse-1 event. */);
Vmac_emulate_three_button_mouse = Qnil;
#if USE_CARBON_EVENTS