aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorMichael R. Mauger2017-07-24 22:15:04 -0400
committerMichael R. Mauger2017-07-24 22:15:04 -0400
commitdf1a71272e5cdd10b511e2ffd702ca50ddd8a773 (patch)
tree9b9ac725394ee80891e2bff57b6407d0e491e71a /src/coding.c
parenteb27fc4d49e8c914cd0e6a8a2d02159601542141 (diff)
parent32daa3cb54523006c88717cbeac87964cd687a1b (diff)
downloademacs-df1a71272e5cdd10b511e2ffd702ca50ddd8a773.tar.gz
emacs-df1a71272e5cdd10b511e2ffd702ca50ddd8a773.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index 5682fc015ad..50ad206be69 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -10539,7 +10539,7 @@ usage: (define-coding-system-internal ...) */)
10539 ASET (this_spec, 2, this_eol_type); 10539 ASET (this_spec, 2, this_eol_type);
10540 Fputhash (this_name, this_spec, Vcoding_system_hash_table); 10540 Fputhash (this_name, this_spec, Vcoding_system_hash_table);
10541 Vcoding_system_list = Fcons (this_name, Vcoding_system_list); 10541 Vcoding_system_list = Fcons (this_name, Vcoding_system_list);
10542 val = Fassoc (Fsymbol_name (this_name), Vcoding_system_alist); 10542 val = Fassoc (Fsymbol_name (this_name), Vcoding_system_alist, Qnil);
10543 if (NILP (val)) 10543 if (NILP (val))
10544 Vcoding_system_alist 10544 Vcoding_system_alist
10545 = Fcons (Fcons (Fsymbol_name (this_name), Qnil), 10545 = Fcons (Fcons (Fsymbol_name (this_name), Qnil),
@@ -10554,7 +10554,7 @@ usage: (define-coding-system-internal ...) */)
10554 10554
10555 Fputhash (name, spec_vec, Vcoding_system_hash_table); 10555 Fputhash (name, spec_vec, Vcoding_system_hash_table);
10556 Vcoding_system_list = Fcons (name, Vcoding_system_list); 10556 Vcoding_system_list = Fcons (name, Vcoding_system_list);
10557 val = Fassoc (Fsymbol_name (name), Vcoding_system_alist); 10557 val = Fassoc (Fsymbol_name (name), Vcoding_system_alist, Qnil);
10558 if (NILP (val)) 10558 if (NILP (val))
10559 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil), 10559 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil),
10560 Vcoding_system_alist); 10560 Vcoding_system_alist);
@@ -10662,7 +10662,7 @@ DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias,
10662 10662
10663 Fputhash (alias, spec, Vcoding_system_hash_table); 10663 Fputhash (alias, spec, Vcoding_system_hash_table);
10664 Vcoding_system_list = Fcons (alias, Vcoding_system_list); 10664 Vcoding_system_list = Fcons (alias, Vcoding_system_list);
10665 val = Fassoc (Fsymbol_name (alias), Vcoding_system_alist); 10665 val = Fassoc (Fsymbol_name (alias), Vcoding_system_alist, Qnil);
10666 if (NILP (val)) 10666 if (NILP (val))
10667 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil), 10667 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil),
10668 Vcoding_system_alist); 10668 Vcoding_system_alist);