diff options
| author | Glenn Morris | 2014-10-08 21:09:10 -0400 |
|---|---|---|
| committer | Glenn Morris | 2014-10-08 21:09:10 -0400 |
| commit | 942a57a2a5c56575a15dd22e1feebd1825f281b0 (patch) | |
| tree | 34fdea0f788628b9aa23d24719b6a667c4ac68d8 | |
| parent | 01058f734a96e6da949c200fb908f06ab8a74909 (diff) | |
| download | emacs-942a57a2a5c56575a15dd22e1feebd1825f281b0.tar.gz emacs-942a57a2a5c56575a15dd22e1feebd1825f281b0.zip | |
* doc/lispref/frames.texi: Tweak previous tweaks.
| -rw-r--r-- | doc/lispref/frames.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 78679b877e4..d5617ed3cfd 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -392,21 +392,21 @@ time, though the frame can span multiple (or no) physical monitors. | |||
| 392 | Here's an example of the data produced by this function on a 2-monitor | 392 | Here's an example of the data produced by this function on a 2-monitor |
| 393 | display: | 393 | display: |
| 394 | 394 | ||
| 395 | @smalllisp | 395 | @lisp |
| 396 | (display-monitor-attributes-list) | 396 | (display-monitor-attributes-list) |
| 397 | @result{} | 397 | @result{} |
| 398 | (((geometry 0 0 1920 1080) ;; @r{Left-hand, primary monitor} | 398 | (((geometry 0 0 1920 1080) ;; @r{Left-hand, primary monitor} |
| 399 | (workarea 0 0 1920 1050) ;; @r{A taskbar occupies some of the height} | 399 | (workarea 0 0 1920 1050) ;; @r{A taskbar occupies some of the height} |
| 400 | (mm-size 677 381) | 400 | (mm-size 677 381) |
| 401 | (name . "\\\\.\\DISPLAY1") | 401 | (name . "DISPLAY1") |
| 402 | (frames #<frame emacs@@host *foo* 0000000005BBDC48> | 402 | (frames #<frame emacs@@host *Messages* 0x11578c0> |
| 403 | #<frame emacs@@host *scratch* 000000008179D370>)) | 403 | #<frame emacs@@host *scratch* 0x114b838>)) |
| 404 | ((geometry 1920 0 1680 1050) ;; @r{Right-hand monitor} | 404 | ((geometry 1920 0 1680 1050) ;; @r{Right-hand monitor} |
| 405 | (workarea 1920 0 1680 1050) ;; @r{Whole screen can be used} | 405 | (workarea 1920 0 1680 1050) ;; @r{Whole screen can be used} |
| 406 | (mm-size 593 370) | 406 | (mm-size 593 370) |
| 407 | (name . "\\\\.\\DISPLAY2") | 407 | (name . "DISPLAY2") |
| 408 | (frames))) | 408 | (frames))) |
| 409 | @end smalllisp | 409 | @end lisp |
| 410 | 410 | ||
| 411 | @end defun | 411 | @end defun |
| 412 | 412 | ||