Don’t prefix lambdas with #'
This commit is contained in:
parent
05fe647254
commit
63c390d76b
@ -73,7 +73,7 @@ custom option but it can be overriden here."
|
|||||||
|
|
||||||
(defun pip-frame--get-frame (&optional no-error)
|
(defun pip-frame--get-frame (&optional no-error)
|
||||||
(let ((frame (cl-find pip-frame--name (frame-list)
|
(let ((frame (cl-find pip-frame--name (frame-list)
|
||||||
:key #'(lambda (f) (frame-parameter f 'name)))))
|
:key (lambda (f) (frame-parameter f 'name)))))
|
||||||
(or frame
|
(or frame
|
||||||
(unless no-error
|
(unless no-error
|
||||||
(error "No PIP frame")))))
|
(error "No PIP frame")))))
|
||||||
@ -87,7 +87,7 @@ custom option but it can be overriden here."
|
|||||||
(frame-inhibit-implied-resize t)
|
(frame-inhibit-implied-resize t)
|
||||||
(face-height (round (/ (face-attribute 'default :height) pip-frame-font-scale))))
|
(face-height (round (/ (face-attribute 'default :height) pip-frame-font-scale))))
|
||||||
(set-face-attribute 'default frame :height face-height)
|
(set-face-attribute 'default frame :height face-height)
|
||||||
(mapc #'(lambda (p) (set-face-attribute 'default frame (car p) (cdr p)))
|
(mapc (lambda (p) (set-face-attribute 'default frame (car p) (cdr p)))
|
||||||
pip-frame-face-attributes)
|
pip-frame-face-attributes)
|
||||||
(set-window-buffer (car (window-list frame)) buffer)
|
(set-window-buffer (car (window-list frame)) buffer)
|
||||||
frame))
|
frame))
|
||||||
@ -104,7 +104,7 @@ custom option but it can be overriden here."
|
|||||||
(let ((windows (window-list (pip-frame--get-frame))))
|
(let ((windows (window-list (pip-frame--get-frame))))
|
||||||
(unless (and temporary
|
(unless (and temporary
|
||||||
(cl-find buffer windows :key #'window-buffer :test #'eq))
|
(cl-find buffer windows :key #'window-buffer :test #'eq))
|
||||||
(let* ((sizes (mapcar #'(lambda (w)
|
(let* ((sizes (mapcar (lambda (w)
|
||||||
(let ((width (window-body-width w t))
|
(let ((width (window-body-width w t))
|
||||||
(height (window-body-height w t)))
|
(height (window-body-height w t)))
|
||||||
(cons (+ (* width width) (* height height))
|
(cons (+ (* width width) (* height height))
|
||||||
|
Loading…
Reference in New Issue
Block a user