Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Bad accent causes problem

From: didec:tiscali at: 13-Oct-2003 13:07

Re: Bad accent causes problem Not sure it's the key, but may be : When you typed in field/area, you call (from the engage) the ctx-text/edit-text func. This one filter the allowed characters with this line : if char? key [ either find keys-to-insert key [insert-char face key] [key: select keymap key] ] with : keys-to-insert: make bitset! #{ 01000000FFFFFFFFFFFFFFFFFFFFFF7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF } and : keymap: [ #"^H" back-char #"^-" tab-char #"^~" del-char #"^M" enter #"^A" all-text #"^C" copy-text #"^X" cut-text #"^V" paste-text #"^T" clear-tail ] Perhaps changing the bitset can be a solution, but it depends if you type the character with one or 2 keys. Another issue might be the terminal type that is declare in your config file. Can you use this chars in a terminal window ? DideC