From: Richard M. Stallman Date: Thu, 17 Jul 1997 18:18:05 +0000 (+0000) Subject: (decode_mode_spec_coding): Fix typo; use `val' instead of `coding-system'. X-Git-Tag: emacs-20.1~1112 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b070c1d71b1bed63dca25ceb87d7668b5dcb8ac7;p=emacs.git (decode_mode_spec_coding): Fix typo; use `val' instead of `coding-system'. --- diff --git a/src/xdisp.c b/src/xdisp.c index 8b41cf9717d..7790109de86 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -4095,7 +4095,7 @@ decode_mode_spec_coding (coding_system, buf, eol_flag) { val = Fget (val, Qcoding_system); if (NILP (eolvalue)) - eolvalue = Fget (coding_system, Qeol_type); + eolvalue = Fget (val, Qeol_type); } *buf++ = XFASTINT (XVECTOR (val)->contents[1]);