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
86c1cf23
Commit
86c1cf23
authored
Mar 23, 1994
by
Karl Heuer
Browse files
(check_mark, Fcall_interactively): Use assignment, not initialization.
parent
c99fc30f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/callint.c
src/callint.c
+4
-3
No files found.
src/callint.c
View file @
86c1cf23
...
@@ -142,7 +142,8 @@ char *callint_argfuns[]
...
@@ -142,7 +142,8 @@ char *callint_argfuns[]
static
void
static
void
check_mark
()
check_mark
()
{
{
Lisp_Object
tem
=
Fmarker_buffer
(
current_buffer
->
mark
);
Lisp_Object
tem
;
tem
=
Fmarker_buffer
(
current_buffer
->
mark
);
if
(
NILP
(
tem
)
||
(
XBUFFER
(
tem
)
!=
current_buffer
))
if
(
NILP
(
tem
)
||
(
XBUFFER
(
tem
)
!=
current_buffer
))
error
(
"The mark is not set now"
);
error
(
"The mark is not set now"
);
if
(
!
NILP
(
Vtransient_mark_mode
)
&&
NILP
(
Vmark_even_if_inactive
)
if
(
!
NILP
(
Vtransient_mark_mode
)
&&
NILP
(
Vmark_even_if_inactive
)
...
@@ -321,9 +322,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
...
@@ -321,9 +322,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
}
}
else
if
(
*
string
==
'@'
)
else
if
(
*
string
==
'@'
)
{
{
Lisp_Object
event
=
Lisp_Object
event
;
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
];
event
=
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
];
if
(
EVENT_HAS_PARAMETERS
(
event
)
if
(
EVENT_HAS_PARAMETERS
(
event
)
&&
XTYPE
(
event
=
XCONS
(
event
)
->
cdr
)
==
Lisp_Cons
&&
XTYPE
(
event
=
XCONS
(
event
)
->
cdr
)
==
Lisp_Cons
&&
XTYPE
(
event
=
XCONS
(
event
)
->
car
)
==
Lisp_Cons
&&
XTYPE
(
event
=
XCONS
(
event
)
->
car
)
==
Lisp_Cons
...
...
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