Mercurial > hg > xemacs-beta
comparison src/mule-charset.c @ 4806:fd36a980d701
Use uninterned symbols in various information-hiding contexts.
lisp/ChangeLog addition:
2010-01-01 Aidan Kehoe <kehoea@parhasard.net>
* syntax.el (map-syntax-table):
* subr.el (map-plist):
* startup.el (load-init-file):
* minibuf.el (read-from-minbuffer):
* cus-edit.el (custom-load-custom-defines-1):
* cmdloop.el (execute-extended-command):
Replace symbol names using underscore, whether to avoid dynamic
scope problems or to ensure helpful arguments to
#'call-with-condition-handler, with uninterned symbols.
src/ChangeLog addition:
2010-01-01 Aidan Kehoe <kehoea@parhasard.net>
* mule-charset.c (Fmake_charset):
Don't intern the symbols used to refer to temporary character
sets, that doesn't bring us anything.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Fri, 01 Jan 2010 19:45:39 +0000 |
parents | 0c54de4c4b9d |
children | 41852ee5f1b0 |
comparison
equal
deleted
inserted
replaced
4767:dba492ef7440 | 4806:fd36a980d701 |
---|---|
623 if (temporary) | 623 if (temporary) |
624 { | 624 { |
625 Ibyte tempname[80]; | 625 Ibyte tempname[80]; |
626 | 626 |
627 qxesprintf (tempname, "___temporary___%d__", id); | 627 qxesprintf (tempname, "___temporary___%d__", id); |
628 name = intern_int (tempname); | 628 name = Fmake_symbol (build_string (tempname)); /* Uninterned. */ |
629 } | 629 } |
630 if (NILP (doc_string)) | 630 if (NILP (doc_string)) |
631 doc_string = build_string (""); | 631 doc_string = build_string (""); |
632 if (NILP (registries)) | 632 if (NILP (registries)) |
633 registries = make_vector(0, Qnil); | 633 registries = make_vector(0, Qnil); |