1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 19:42:53 -08:00

(xcharset): Fix the treating $arg0.

This commit is contained in:
Kenichi Handa 2009-07-07 06:25:45 +00:00
parent d35e5c1ee0
commit af800dc075

View file

@ -1009,7 +1009,7 @@ end
define xcharset
set $tmp = (struct Lisp_Hash_Table *) ((Vcharset_hash_table & $valmask) | gdb_data_seg_bits)
set $tmp = (struct Lisp_Vector *) (($tmp->key_and_value & $valmask) | gdb_data_seg_bits)
p $tmp->contents[$arg0->hash_index * 2]
p $tmp->contents[charset_table[$arg0].hash_index * 2]
pr
end
document xcharset