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

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

[elpa] externals/poker b9debcb 04/12: Fix some quoting problems in doc s


From: Stefan Monnier
Subject: [elpa] externals/poker b9debcb 04/12: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 16:46:49 -0500 (EST)

branch: externals/poker
commit b9debcbeab799771718210f8ceb161b61192bae0
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.
---
 poker.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/poker.el b/poker.el
index 55f22be..9de00d3 100644
--- a/poker.el
+++ b/poker.el
@@ -1,4 +1,4 @@
-;;; poker.el --- Texas hold'em poker
+;;; poker.el --- Texas hold 'em poker
 
 ;; Copyright (C) 2014  Free Software Foundation, Inc.
 
@@ -22,7 +22,7 @@
 
 ;;; Commentary:
 
-;; poker.el provides texas hold'em poker gameplay for Emacs.
+;; poker.el provides Texas hold 'em poker gameplay for Emacs.
 
 ;;; Requires:
 
@@ -342,7 +342,7 @@ FCR-FN specifies a function to use when a fold-call-raise 
decision is required."
        (cons 'wagered 0)
        (cons 'pocket nil)
        (cons 'fcr-fn fcr-fn)))
-  
+
 (defun poker-player-name (player)
   "Return the name of poker PLAYER."
   (cdr (assq 'name player)))
@@ -589,7 +589,7 @@ FCR-FN specifies a function to use when a fold-call-raise 
decision is required."
               (poker-player-name (car winners))
               (poker-distribute-winnings winners players))
       winners))
-   
+
    ;; pre-flop, second round of bets, no raises allowed
    ((and (null board) (cl-remove-if
                       (lambda (player)
@@ -833,8 +833,8 @@ FCR-FN specifies a function to use when a fold-call-raise 
decision is required."
 
 ;;;###autoload
 (define-key menu-bar-games-menu
-  [poker] '(menu-item "Texas hold'em poker" poker
-                     :help "Play texas hold'em poker"))
+  [poker] '(menu-item "Texas hold 'em poker" poker
+                     :help "Play Texas hold 'em poker"))
 
 ;;; Tests:
 



reply via email to

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