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
4
Issues
4
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
e4305426
Commit
e4305426
authored
Jun 25, 2007
by
David Kastrup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fcall_interactively): Make the parsing of interactive
specs somewhat more readable.
parent
986c5ad5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
src/ChangeLog
src/ChangeLog
+5
-0
src/callint.c
src/callint.c
+7
-4
No files found.
src/ChangeLog
View file @
e4305426
2007-06-25 David Kastrup <dak@gnu.org>
* callint.c (Fcall_interactively): Make the parsing of interactive
specs somewhat more readable.
2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
...
...
src/callint.c
View file @
e4305426
...
...
@@ -473,16 +473,19 @@ invoke it. If KEYS is omitted or nil, the return value of
/* Count the number of arguments the interactive spec would have
us give to the function. */
tem
=
string
;
for
(
j
=
0
;
*
tem
;
j
++
)
for
(
j
=
0
;
*
tem
;)
{
/* 'r' specifications ("point and mark as 2 numeric args")
produce *two* arguments. */
if
(
*
tem
==
'r'
)
j
++
;
if
(
*
tem
==
'r'
)
j
+=
2
;
else
j
++
;
tem
=
(
unsigned
char
*
)
index
(
tem
,
'\n'
);
if
(
tem
)
tem
++
;
++
tem
;
else
tem
=
(
unsigned
char
*
)
""
;
break
;
}
count
=
j
;
...
...
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