aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesper Harder2005-01-30 16:39:16 +0000
committerJesper Harder2005-01-30 16:39:16 +0000
commit7bf72fa6f6c24219eb242b70ab887e4dc9138781 (patch)
tree7f2908dfcd137451056cf30677bae079e365d22a /src
parent70b96d19f12a96e4983db214b8d3fa6c6ba26525 (diff)
downloademacs-7bf72fa6f6c24219eb242b70ab887e4dc9138781.tar.gz
emacs-7bf72fa6f6c24219eb242b70ab887e4dc9138781.zip
(syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation.
(syms_of_macterm) <mac-emulate-three-button-mouse>: do.
Diffstat (limited to 'src')
-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 97f88d2b3f8..d1425eba3bb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-01-30 Jesper Harder <harder@phys.au.dk>
2
3 * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation.
4 (syms_of_macterm) <mac-emulate-three-button-mouse>: do.
5
12005-01-29 Luc Teirlinck <teirllm@auburn.edu> 62005-01-29 Luc Teirlinck <teirllm@auburn.edu>
2 7
3 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update. 8 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
diff --git a/src/macterm.c b/src/macterm.c
index 9304a2d62f9..9dfe67bd040 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. */);
9902 9902
9903 DEFVAR_LISP ("mac-reverse-ctrl-meta", &Vmac_reverse_ctrl_meta, 9903 DEFVAR_LISP ("mac-reverse-ctrl-meta", &Vmac_reverse_ctrl_meta,
9904 doc: /* Non-nil means that the control and meta keys are reversed. This is 9904 doc: /* Non-nil means that the control and meta keys are reversed. This is
9905 useful for non-standard keyboard layouts. */); 9905useful for non-standard keyboard layouts. */);
9906 Vmac_reverse_ctrl_meta = Qnil; 9906 Vmac_reverse_ctrl_meta = Qnil;
9907 9907
9908 DEFVAR_LISP ("mac-emulate-three-button-mouse", 9908 DEFVAR_LISP ("mac-emulate-three-button-mouse",
9909 &Vmac_emulate_three_button_mouse, 9909 &Vmac_emulate_three_button_mouse,
9910 doc: /* t means that when the option-key is held down while pressing the 9910 doc: /* t means that when the option-key is held down while pressing the
9911 mouse button, the click will register as mouse-2 and while the 9911mouse button, the click will register as mouse-2 and while the
9912 command-key is held down, the click will register as mouse-3. 9912command-key is held down, the click will register as mouse-3.
9913 'reverse means that the the option-key will register for mouse-3 9913'reverse means that the the option-key will register for mouse-3
9914 and the command-key will register for mouse-2. nil means that 9914and the command-key will register for mouse-2. nil means that
9915 not emulation should be done and the modifiers should be placed 9915no emulation should be done and the modifiers should be placed
9916 on the mouse-1 event. */); 9916on the mouse-1 event. */);
9917 Vmac_emulate_three_button_mouse = Qnil; 9917 Vmac_emulate_three_button_mouse = Qnil;
9918 9918
9919#if USE_CARBON_EVENTS 9919#if USE_CARBON_EVENTS