Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dd5963ea
Commit
dd5963ea
authored
May 02, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* process.c (Fformat_network_address): Fix typo: args2 -> *args2.
parent
88c9450f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/process.c
src/process.c
+1
-1
No files found.
src/ChangeLog
View file @
dd5963ea
2011-05-03 Paul Eggert <eggert@cs.ucla.edu>
* process.c (Fformat_network_address): Fix typo: args2 -> *args2.
* xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
* coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
...
...
src/process.c
View file @
dd5963ea
...
...
@@ -1384,7 +1384,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
{
if
(
EQ
(
coding_systems
,
Qt
))
{
args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2);
args2
=
(
Lisp_Object
*
)
alloca
((
nargs
+
1
)
*
sizeof
*
args2
);
args2
[
0
]
=
Qstart_process
;
for
(
i
=
0
;
i
<
nargs
;
i
++
)
args2
[
i
+
1
]
=
args
[
i
];
GCPRO2
(
proc
,
current_dir
);
...
...
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