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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
86c1cf23
Commit
86c1cf23
authored
Mar 23, 1994
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(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[]
static
void
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
))
error
(
"The mark is not set now"
);
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.")
}
else
if
(
*
string
==
'@'
)
{
Lisp_Object
event
=
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
];
Lisp_Object
event
;
event
=
XVECTOR
(
this_command_keys
)
->
contents
[
next_event
];
if
(
EVENT_HAS_PARAMETERS
(
event
)
&&
XTYPE
(
event
=
XCONS
(
event
)
->
cdr
)
==
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