aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2025-11-02 10:48:13 +0200
committerEli Zaretskii2025-11-02 10:48:13 +0200
commit69b0aa2928e6f693e7c6d09b7ffae9839166fc2b (patch)
treeaadf1319f135f3089b7d50f93b3a5678fa647621 /src
parent6d36c6b6f9c18fac9b4840a12ed830f0580c2de1 (diff)
downloademacs-69b0aa2928e6f693e7c6d09b7ffae9839166fc2b.tar.gz
emacs-69b0aa2928e6f693e7c6d09b7ffae9839166fc2b.zip
; Fix documentation of a recent commit
* doc/emacs/frames.texi (Frame Commands): Document 'alter-fullscreen-frames', which is a user option. Fix indexing. * src/frame.c (syms_of_frame) <alter-fullscreen-frames>: Doc fix. (Bug#79756)
Diffstat (limited to 'src')
-rw-r--r--src/frame.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/frame.c b/src/frame.c
index d426fa6f1da..8112af5acba 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -7509,9 +7509,9 @@ allow `make-frame' to show the current buffer even if its hidden. */);
7509#endif 7509#endif
7510 7510
7511 DEFVAR_LISP ("alter-fullscreen-frames", alter_fullscreen_frames, 7511 DEFVAR_LISP ("alter-fullscreen-frames", alter_fullscreen_frames,
7512 doc: /* How to handle requests to alter fullscreen frames. 7512 doc: /* How to handle requests to resize fullscreen frames.
7513Emacs consults this option when asked to resize a fullscreen frame via 7513Emacs consults this option when asked to resize a fullscreen frame via
7514functions like 'set-frame-size' or when setting the 'width' or 'height' 7514functions like `set-frame-size' or when setting the \\+`width' or \\+`height'
7515parameter of a frame. The following values are provided: 7515parameter of a frame. The following values are provided:
7516 7516
7517- nil means to forward the resize request to the window manager and 7517- nil means to forward the resize request to the window manager and
@@ -7520,10 +7520,10 @@ parameter of a frame. The following values are provided:
7520- t means to first reset the fullscreen status and then forward the 7520- t means to first reset the fullscreen status and then forward the
7521 request to the window manager. 7521 request to the window manager.
7522 7522
7523- 'inhibit' means to reject the resize request and leave the fullscreen 7523- \\+`inhibit' means to reject the resize request and leave the fullscreen
7524 status unchanged. 7524 status unchanged.
7525 7525
7526The default is 'inhibit' on NS builds and nil everywhere else. */); 7526The default is \\+`inhibit' in NS builds and nil everywhere else. */);
7527 7527
7528#if defined (NS_IMPL_COCOA) 7528#if defined (NS_IMPL_COCOA)
7529 alter_fullscreen_frames = Qinhibit; 7529 alter_fullscreen_frames = Qinhibit;