]> git.eshelyaron.com Git - emacs.git/commitdiff
; Clarify documentation of 'server-after-make-frame-hook'
authorEli Zaretskii <eliz@gnu.org>
Thu, 27 Jul 2023 06:37:03 +0000 (09:37 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 30 Jul 2023 07:23:32 +0000 (10:23 +0300)
* doc/lispref/frames.texi (Creating Frames):
* lisp/server.el (server-after-make-frame-hook): Clarify
documentation of 'server-after-make-frame-hook'.  (Bug#64873)

(cherry picked from commit e650a14f64b9ebea69615c19ca4466c14af35857)

doc/lispref/frames.texi
lisp/server.el

index a8ac9a214f63d8ffed1e3450cf86efbbb945b2f2..9bfb9e50c6ceff91771cb8dca0bd91a4ccfa13a0 100644 (file)
@@ -187,9 +187,13 @@ selected frame.
 @end defvar
 
 @defopt server-after-make-frame-hook
-A normal hook run when the Emacs server creates a client frame.  When
-this hook is called, the created frame is the selected one.
-@xref{Emacs Server,,, emacs, The GNU Emacs Manual}.
+A normal hook run when the Emacs server starts using a client frame.
+When this hook is called, the client frame is the selected one.  Note
+that, depending on how @command{emacsclient} was invoked
+(@pxref{Invoking emacsclient,,, emacs, The GNU Emacs Manual}), this
+client frame could be a new frame created for the client, or it could
+be an existing frame that the server reused for handling the client
+commands.  @xref{Emacs Server,,, emacs, The GNU Emacs Manual}.
 @end defopt
 
 
index eaf24a770e4f99c476cdccad1ad288400fa0cd4c..104fc060c05b50672690f15f7ed6f8cdcee71311 100644 (file)
@@ -182,8 +182,10 @@ space (this means characters from ! to ~; or from code 33 to
   :type 'hook)
 
 (defcustom server-after-make-frame-hook nil
-  "Hook run when the Emacs server creates a client frame.
-The created frame is selected when the hook is called."
+  "Hook run when the Emacs server starts using a client frame.
+The client frame is selected when the hook is called.
+The client frame could be a newly-created frame, or an
+existing frame reused for this purpose."
   :type 'hook
   :version "27.1")