Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
16701811
Commit
16701811
authored
Apr 11, 1995
by
Karl Heuer
Browse files
Comment changes.
parent
ab48365b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/keyboard.h
src/keyboard.h
+11
-1
No files found.
src/keyboard.h
View file @
16701811
...
...
@@ -66,7 +66,17 @@ struct kboard
{
KBOARD
*
next_kboard
;
/* The state of a prefix arg. */
/* The state of a prefix arg.
After pressing C-u COUNT times, prefix_factor is 4^COUNT
and prefix_value is nil.
After C-u NUM, prefix_factor is nil and prefix_value is abs(NUM).
(prefix_factor and prefix_value are never both non-nil.)
prefix_sign is always either +1 or -1; a value of -1 means that
the actual numeric argument is the negative of what's in prefix_value,
or just `-' if prefix_value is nil.
The boolean prefix_partial means that the user is in the process
of building a prefix argument, so that a minus or digit key at
this point is handled specially. */
Lisp_Object
prefix_factor
,
prefix_value
;
int
prefix_sign
,
prefix_partial
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment