diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-07-13 13:02:27 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-07-13 13:02:27 -0400 |
commit | 21bd02a62dcf3529e1591a43a9f80d81d13e6915 (patch) | |
tree | 7979bbab489daac57c8465931d10bb7b3ecf73da /lisp/frame.el | |
parent | d5e7f8d0259d8fcae228220f05f5f66328df38c5 (diff) | |
download | emacs-21bd02a62dcf3529e1591a43a9f80d81d13e6915.tar.gz |
* lisp/frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 10abed1ff19..534d6a2b4e7 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -736,11 +736,11 @@ the new frame according to its own rules." (error "Don't know how to create a frame on window system %s" w)) ;; Add parameters from `window-system-default-frame-alist'. (dolist (p (cdr (assq w window-system-default-frame-alist))) - (unless (memq (car p) params) + (unless (assq (car p) params) (push p params))) ;; Add parameters from `default-frame-alist'. (dolist (p default-frame-alist) - (unless (memq (car p) params) + (unless (assq (car p) params) (push p params))) ;; Now make the frame. (run-hooks 'before-make-frame-hook) |