emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/other-frame-window 7939a1b 08/16: Fix some quoting prob


From: Stefan Monnier
Subject: [elpa] externals/other-frame-window 7939a1b 08/16: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 16:38:34 -0500 (EST)

branch: externals/other-frame-window
commit 7939a1bc37325da0d07969c6d54d2c784a656f83
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 other-frame-window.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/other-frame-window.el b/other-frame-window.el
index 2427ce6..979d18f 100755
--- a/other-frame-window.el
+++ b/other-frame-window.el
@@ -120,7 +120,7 @@
             #'ofw--preserve-state))
 
 (defun ofw-delete-from-overriding ()
-  "Remove ourselves from 'display-buffer-overriding-action' action list, if 
present."
+  "Remove ourselves from `display-buffer-overriding-action' action list, if 
present."
   (let ((functions (car display-buffer-overriding-action))
         (attrs (cdr display-buffer-overriding-action)))
     (setq functions (remq #'ofw-display-buffer-other-frame
@@ -142,7 +142,7 @@
   "Show BUFFER in another window in the current frame,
 creating new window if needed and allowed.
 If successful, return window; else return nil.
-Intended for 'display-buffer-overriding-action'."
+Intended for `display-buffer-overriding-action'."
   ;; Reset for next display-buffer call.  Normally, this is taken care
   ;; of by ofw--reset-prefix, but we do it here in case the user does
   ;; two ofw prefixed commands consecutively.
@@ -161,7 +161,7 @@ Intended for 'display-buffer-overriding-action'."
 (defun ofw-display-buffer-other-frame (buffer alist)
   "Show BUFFER in another frame, creating a new frame if needed.
 If successful, return window; else return nil.
-Intended for 'display-buffer-overriding-action'."
+Intended for `display-buffer-overriding-action'."
   ;; Reset for next display-buffer call.
   (ofw-delete-from-overriding)
 
@@ -179,7 +179,7 @@ This allows `switch-to-buffer' to respect 
`ofw-other-window',
     (funcall orig-fun buffer norecord force-same-window)))
 
 (defun ofw--suspend-and-restore (orig-func &rest args)
-  "Call ORIG-FUNC without any ofw actions on 
'display-buffer-overriding-action'."
+  "Call ORIG-FUNC without any ofw actions on 
`display-buffer-overriding-action'."
   (let ((display-buffer-overriding-action display-buffer-overriding-action))
     (ofw-delete-from-overriding)
     (apply orig-func args)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]