From: Paul Eggert Date: Tue, 3 May 2011 06:13:54 +0000 (-0700) Subject: * process.c (Fformat_network_address): Fix typo: args2 -> *args2. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~92^2~19 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dd5963ea216906d4047f9dcbd044326a3c019868;p=emacs.git * process.c (Fformat_network_address): Fix typo: args2 -> *args2. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6235e908cfd..56e1ac9a503 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-05-03 Paul Eggert + * 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). 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) */) { 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);