1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00: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