changeset 59804:f47724e7b605

(syms_of_macterm) <mac-reverse-ctrl-meta>: Fix docstring indentation. (syms_of_macterm) <mac-emulate-three-button-mouse>: do.
author Jesper Harder <harder@ifa.au.dk>
date Sun, 30 Jan 2005 16:39:16 +0000
parents 1d029199bde6
children 9cde8b16e3a7
files src/ChangeLog src/macterm.c
diffstat 2 files changed, 12 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Jan 30 14:47:11 2005 +0000
+++ b/src/ChangeLog	Sun Jan 30 16:39:16 2005 +0000
@@ -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.
--- a/src/macterm.c	Sun Jan 30 14:47:11 2005 +0000
+++ b/src/macterm.c	Sun Jan 30 16:39:16 2005 +0000
@@ -9902,18 +9902,18 @@
 
   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