aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-05-02 23:13:54 -0700
committerPaul Eggert2011-05-02 23:13:54 -0700
commitdd5963ea216906d4047f9dcbd044326a3c019868 (patch)
tree2d50bf3953c6f8b85323cd1537732167e66095bc /src
parent88c9450f387d1a89aabcbadef504f3688586410c (diff)
downloademacs-dd5963ea216906d4047f9dcbd044326a3c019868.tar.gz
emacs-dd5963ea216906d4047f9dcbd044326a3c019868.zip
* process.c (Fformat_network_address): Fix typo: args2 -> *args2.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/process.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6235e908cfd..56e1ac9a503 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-05-03 Paul Eggert <eggert@cs.ucla.edu> 12011-05-03 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
4
3 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times). 5 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
4 6
5 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601). 7 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
diff --git a/src/process.c b/src/process.c
index 59d1b9ea77f..3dc096e7d60 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1384,7 +1384,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1384 { 1384 {
1385 if (EQ (coding_systems, Qt)) 1385 if (EQ (coding_systems, Qt))
1386 { 1386 {
1387 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof args2); 1387 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1388 args2[0] = Qstart_process; 1388 args2[0] = Qstart_process;
1389 for (i = 0; i < nargs; i++) args2[i + 1] = args[i]; 1389 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1390 GCPRO2 (proc, current_dir); 1390 GCPRO2 (proc, current_dir);