]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation.
authorJesper Harder <harder@ifa.au.dk>
Sun, 30 Jan 2005 16:39:16 +0000 (16:39 +0000)
committerJesper Harder <harder@ifa.au.dk>
Sun, 30 Jan 2005 16:39:16 +0000 (16:39 +0000)
(syms_of_macterm) <mac-emulate-three-button-mouse>: do.

src/ChangeLog
src/macterm.c

index 97f88d2b3f846aa737d25a769ee9345b08155034..d1425eba3bbcbd0161ad51f09b2312536c0c551b 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-30  Jesper Harder  <harder@phys.au.dk>
+
+       * 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  <teirllm@auburn.edu>
 
        * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
index 9304a2d62f9985dcd0f473fcf29ed8592dcae8be..9dfe67bd040e3a946cb30112b093db6898d17c08 100644 (file)
@@ -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