Re: The '^' character in strings

2014-07-01 Thread Alexander Burger
On Tue, Jul 01, 2014 at 06:10:35AM +0200, Danilo Kordic wrote: ^ starts an escape sequence. Yes. Or, perhaps to be more exact, they are read-macros. : (mapcar char (range 0 64)) - (NIL ^A ^B ^C ^D ^E ^F ^G ^H ^I ^J ^K ^L ^M ^N ^O ^P ^Q ^R ^S ^T ^U ^V ^W ^X ^Y ^Z ^[ ^\ ^] ^^ ^_ ! \ # $ %

Re: The '^' character in strings

2014-06-30 Thread Danilo Kordic
^ starts an escape sequence. : (mapcar char (range 0 64)) - (NIL ^A ^B ^C ^D ^E ^F ^G ^H ^I ^J ^K ^L ^M ^N ^O ^P ^Q ^R ^S ^T ^U ^V ^W ^X ^Y ^Z ^[ ^\ ^] ^^ ^_ ! \ # $ % ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; = ? @) # I think You see the pattern. : (setq v1 ^ ) - $384402410 # For example.