Skip to content
Snippets Groups Projects
Commit b857c6cf authored by wlott's avatar wlott
Browse files

Added an eval-when around some defconstants, 'cause their value was used in

other defconstants.
parent 46008afc
No related branches found
No related tags found
No related merge requests found
......@@ -658,8 +658,10 @@
(defconstant minimum-window-columns 8
"Windows must be at least this many characters wide.")
(eval-when (compile eval load)
(defconstant xwindow-border-width 2 "X border around X windows")
(defconstant xwindow-border-width*2 (* xwindow-border-width 2))
); eval-when
;;; We must name windows (set the "name" property) to get around a bug in
;;; awm and twm. They will not handle menu clicks without a window having
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment