can someone tell me how to create an invisible frame? I tried setting visibility to nil in default-frame-alist, but that doesn't do the job.
This works for me: (make-frame '((name . "foo") (visibility))) But you're right; if I do this, then `C-x 5 f RET bar', the resulting new frame is visible (visibility . t): (setq default-frame-alist (append '((visibility)) default-frame-alist)) I wonder if this doesn't represent a bug? HTH, Drew _______________________________________________ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnu-emacs