aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-04-11 00:38:11 +0000
committerKarl Heuer1995-04-11 00:38:11 +0000
commit167018113cf0f690cca41e9e4c2f4a1121356352 (patch)
tree83f7377a99afbe9dc244e394890c4e22aa758992 /src
parentab48365b501c0440950b5c06c857a4045cf7ef4c (diff)
downloademacs-167018113cf0f690cca41e9e4c2f4a1121356352.tar.gz
emacs-167018113cf0f690cca41e9e4c2f4a1121356352.zip
Comment changes.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/keyboard.h b/src/keyboard.h
index e3c30fd0f54..93d4d7bd0f3 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -66,7 +66,17 @@ struct kboard
66 { 66 {
67 KBOARD *next_kboard; 67 KBOARD *next_kboard;
68 68
69 /* The state of a prefix arg. */ 69 /* The state of a prefix arg.
70 After pressing C-u COUNT times, prefix_factor is 4^COUNT
71 and prefix_value is nil.
72 After C-u NUM, prefix_factor is nil and prefix_value is abs(NUM).
73 (prefix_factor and prefix_value are never both non-nil.)
74 prefix_sign is always either +1 or -1; a value of -1 means that
75 the actual numeric argument is the negative of what's in prefix_value,
76 or just `-' if prefix_value is nil.
77 The boolean prefix_partial means that the user is in the process
78 of building a prefix argument, so that a minus or digit key at
79 this point is handled specially. */
70 Lisp_Object prefix_factor, prefix_value; 80 Lisp_Object prefix_factor, prefix_value;
71 int prefix_sign, prefix_partial; 81 int prefix_sign, prefix_partial;
72 82