I am using a variable storing a cons cell
(defvar typex-frame-position (cons 1270 1223))
Followed by
(setq initial-frame-alist
'((left . (car typex-frame-position))
(top . (cdr typex-frame-position))
(width . 73) (height . 21)))
But, the only way I get the frame at the correct position is to hardwire the numbers like this.
(setq initial-frame-alist
'((left . 1270)
(top . 1223)
(width . 73) (height . 21)))
How can I use the values from typex-frame-position
?