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

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

[elpa] master 44c32b1 11/56: more doc corrections:


From: Rocky Bernstein
Subject: [elpa] master 44c32b1 11/56: more doc corrections:
Date: Sat, 27 May 2017 05:02:29 -0400 (EDT)

branch: master
commit 44c32b11fc44f89dbe0cedef7108707e17d8ce49
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    more doc corrections:
    
    Regluar expression that -> realgud-loc-pat that
---
 realgud/debugger/bashdb/init.el   | 12 ++++++------
 realgud/debugger/ipdb/init.el     | 10 +++++-----
 realgud/debugger/trepan/init.el   | 18 +++++++++---------
 realgud/debugger/trepan3k/init.el | 18 +++++++++---------
 realgud/debugger/trepanjs/init.el | 16 ++++++++--------
 realgud/debugger/zshdb/init.el    | 16 ++++++++--------
 6 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/realgud/debugger/bashdb/init.el b/realgud/debugger/bashdb/init.el
index 2c7769f..7eead68 100644
--- a/realgud/debugger/bashdb/init.el
+++ b/realgud/debugger/bashdb/init.el
@@ -54,29 +54,29 @@ realgud-loc-pat struct")
        :num 1
        ))
 
-;;  Regular expression that describes a "breakpoint set" line
+;;  realgud-loc-pat that describes a "breakpoint set" line
 (setf (gethash "brkpt-set" realgud:bashdb-pat-hash)
       realgud:POSIX-debugger-brkpt-set-pat)
 
-;; Regular expression that describes a debugger "delete" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "delete" (breakpoint) response.
 ;; For example:
 ;;   Deleted breakpoint 1.
 (setf (gethash "brkpt-del" realgud:bashdb-pat-hash)
       realgud:POSIX-debugger-brkpt-del-pat)
 
-;; Regular expression that describes a debugger "disable" (breakpoint) 
response.
+;; realgud-loc-pat that describes a debugger "disable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint entry 4 disabled.
 (setf (gethash "brkpt-disable" realgud:bashdb-pat-hash)
       realgud:POSIX-debugger-brkpt-disable-pat)
 
-;; Regular expression that describes a debugger "enable" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "enable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint entry 4 enabled.
 (setf (gethash "brkpt-enable" realgud:bashdb-pat-hash)
       realgud:POSIX-debugger-brkpt-enable-pat)
 
-;; Regular expression that describes a debugger "backtrace" command line.
+;; realgud-loc-pat that describes a debugger "backtrace" command line.
 ;; For example:
 ;;   ->0 in file `../bashdb/test/example/subshell.sh' at line 6
 ;;   ##1 source("../bashdb/shell.sh") called from file `/bin/bashdb' at line 
140
@@ -84,7 +84,7 @@ realgud-loc-pat struct")
 (setf (gethash "debugger-backtrace" realgud:bashdb-pat-hash)
       realgud:POSIX-debugger-backtrace-pat)
 
-;; Regular expression for a termination message.
+;; realgud-loc-pat for a termination message.
 (setf (gethash "termination" realgud:bashdb-pat-hash)
        "^bashdb: That's all, folks...\n")
 
diff --git a/realgud/debugger/ipdb/init.el b/realgud/debugger/ipdb/init.el
index b1cd04f..1a59fb0 100644
--- a/realgud/debugger/ipdb/init.el
+++ b/realgud/debugger/ipdb/init.el
@@ -36,7 +36,7 @@ realgud-loc-pat struct")
 
 (declare-function make-realgud-loc "realgud-loc" (a b c d e f))
 
-;; Regular expression that describes a ipdb location generally shown
+;; realgud-loc-pat that describes a ipdb location generally shown
 ;; before a command prompt.
 ;;
 ;; Program-location lines look like this:
@@ -54,15 +54,15 @@ realgud-loc-pat struct")
        :regexp   "^ipdb[>] "
        ))
 
-;;  Regular expression that describes a Python backtrace line.
+;;  realgud-loc-pat that describes a Python backtrace line.
 (setf (gethash "lang-backtrace" realgud:ipdb-pat-hash)
       realgud-python-backtrace-loc-pat)
 
-;;  Regular expression that describes location in a pytest error
+;;  realgud-loc-pat that describes location in a pytest error
 (setf (gethash "pytest-error" realgud:ipdb-pat-hash)
       realgud-pytest-error-loc-pat)
 
-;;  Regular expression that describes a "breakpoint set" line. For example:
+;;  realgud-loc-pat that describes a "breakpoint set" line. For example:
 ;;     Breakpoint 1 at /usr/bin/ipdb:7
 (setf (gethash "brkpt-set" realgud:ipdb-pat-hash)
       (make-realgud-loc-pat
@@ -71,7 +71,7 @@ realgud-loc-pat struct")
        :file-group 2
        :line-group 3))
 
-;; Regular expression that describes a "delete breakpoint" line
+;; realgud-loc-pat that describes a "delete breakpoint" line
 ;; Python 3 includes a file name and line number; Python 2 doesn't
 (setf (gethash "brkpt-del" realgud:ipdb-pat-hash)
       (make-realgud-loc-pat
diff --git a/realgud/debugger/trepan/init.el b/realgud/debugger/trepan/init.el
index b2cc954..f66e3e8 100644
--- a/realgud/debugger/trepan/init.el
+++ b/realgud/debugger/trepan/init.el
@@ -65,17 +65,17 @@ realgud-loc-pat struct")
       realgud-ruby-YARV-syntax-error-pat)
 
 ;; Regular expression that describes a Ruby YARV backtrace line.
-;; For example: 
+;; For example:
 ;;     from /ruby/gems/2.2.0/gems/fog-1.32.0/lib/fog/digitalocean.rb:1:in 
`<top (required)>'
 ;;     from /Users/fog-1.32.0/lib/fog.rb:28:in `require'
 (setf (gethash "lang-backtrace" realgud:trepan-pat-hash)
       realgud-ruby-backtrace-loc-pat)
-   
-;;  Regular expression that describes a ruby $! backtrace
+
+;;  realgud-loc-pat that describes a ruby $! backtrace
 (setf (gethash "dollar-bang-backtrace" realgud:trepan-pat-hash)
       realgud-ruby-dollar-bang-loc-pat)
 
-;; Regular expression that describes a "breakpoint set" line.
+;; realgud-loc-pat that describes a "breakpoint set" line.
 ;; For example:
 ;;   Breakpoint 1 set at VM offset 2 of instruction sequence "require",
 ;;     line 29 in file <internal:lib/rubygems/custom_require>.
@@ -88,7 +88,7 @@ realgud-loc-pat struct")
        :file-group 3
        :line-group 2))
 
-;; Regular expression that describes a debugger "delete" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "delete" (breakpoint) response.
 ;; For example:
 ;;   Deleted breakpoint 1.
 (setf (gethash "brkpt-del" realgud:trepan-pat-hash)
@@ -108,7 +108,7 @@ backtrace listing.")
 ;; Top frame number
 (setf (gethash "top-frame-num" realgud:trepan-pat-hash) 0)
 
-;; Regular expression that describes a debugger "selected" frame in in
+;; realgud-loc-pat that describes a debugger "selected" frame in in
 ;; a frame-motion command.
 ;; For example:
 ;; --> #1 TOP Object#<top /usr/local/bin/irb> in file /usr/local/bin/irb at 
line 9
@@ -126,11 +126,11 @@ backtrace listing.")
        :file-group 8
        :line-group 9))
 
-;;  Regular expression that describes a Ruby $! string
+;;  realgud-loc-pat that describes a Ruby $! string
 (setf (gethash "dollar-bang" realgud:trepan-pat-hash)
       realgud-ruby-dollar-bang-loc-pat)
 
-;;  Regular expression that describes debugger "backtrace" command line.
+;;  realgud-loc-pat that describes debugger "backtrace" command line.
 ;;  e.g.
 ;; --> #0 METHOD Object#require(path) in file <internal:lib/require> at line 28
 ;;     #1 TOP Object#<top /tmp/linecache.rb> in file /tmp/linecache.rb
@@ -147,7 +147,7 @@ backtrace listing.")
        :line-group 7)
       )
 
-;; Regular expression that for a termination message.
+;; realgud-loc-pat that for a termination message.
 (setf (gethash "termination" realgud:trepan-pat-hash)
        "^trepan: That's all, folks...\n")
 
diff --git a/realgud/debugger/trepan3k/init.el 
b/realgud/debugger/trepan3k/init.el
index ef2dfbd..d74f24d 100644
--- a/realgud/debugger/trepan3k/init.el
+++ b/realgud/debugger/trepan3k/init.el
@@ -36,7 +36,7 @@ realgud-loc-pat struct")
 
 (declare-function make-realgud-loc 'realgud-loc)
 
-;; Regular expression that describes a trepan3k location generally shown
+;; realgud-loc-pat that describes a trepan3k location generally shown
 ;; before a command prompt.
 ;;
 ;; For example:
@@ -52,7 +52,7 @@ realgud-loc-pat struct")
        :regexp   "^(trepan3k) "
        ))
 
-;; Regular expression that describes a trepan3k backtrace line.
+;; realgud-loc-pat that describes a trepan3k backtrace line.
 ;; For example:
 ;; ->0 get_distribution(dist='trepan==0.3.9')
 ;;     called from file '/python2.7/dist-packages/pkg_res.py' at line 341
@@ -63,35 +63,35 @@ realgud-loc-pat struct")
 (setf (gethash "debugger-backtrace" realgud:trepan3k-pat-hash)
       realgud:python-trepan-backtrace-pat)
 
-;;  Regular expression that describes a Python backtrace line.
+;;  realgud-loc-pat that describes a Python backtrace line.
 (setf (gethash "lang-backtrace" realgud:trepan3k-pat-hash)
       realgud-python-backtrace-loc-pat)
 
-;;  Regular expression that describes location in a pytest error
+;;  realgud-loc-pat that describes location in a pytest error
 (setf (gethash "pytest-error" realgud:trepan3k-pat-hash)
       realgud-pytest-error-loc-pat)
 
-;;  Regular expression that describes a "breakpoint set" line
+;;  realgud-loc-pat that describes a "breakpoint set" line
 (setf (gethash "brkpt-set" realgud:trepan3k-pat-hash)
       realgud:python-trepan-brkpt-set-pat)
 
-;;  Regular expression that describes a "delete breakpoint" line
+;;  realgud-loc-pat that describes a "delete breakpoint" line
 (setf (gethash "brkpt-del" realgud:trepan3k-pat-hash)
       realgud:python-trepan-brkpt-del-pat)
 
-;; Regular expression that describes a debugger "disable" (breakpoint) 
response.
+;; realgud-loc-pat that describes a debugger "disable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint 4 disabled.
 (setf (gethash "brkpt-disable" realgud:trepan3k-pat-hash)
       realgud:python-trepan-brkpt-disable-pat)
 
-;; Regular expression that describes a debugger "enable" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "enable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint 4 enabled.
 (setf (gethash "brkpt-enable" realgud:trepan3k-pat-hash)
       realgud:python-trepan-brkpt-enable-pat)
 
-;; Regular expression for a termination message.
+;; realgud-loc-pat for a termination message.
 (setf (gethash "termination" realgud:trepan3k-pat-hash)
        "^trepan3k: That's all, folks...\n")
 
diff --git a/realgud/debugger/trepanjs/init.el 
b/realgud/debugger/trepanjs/init.el
index 8470fe2..9f37b6f 100644
--- a/realgud/debugger/trepanjs/init.el
+++ b/realgud/debugger/trepanjs/init.el
@@ -34,7 +34,7 @@ realgud-loc-pat struct")
 
 (defconst realgud:trepanjs-file-regexp   "\\([^ \t\n]+\\)\\(?: \\[.*\\]\\)?")
 
-;; Regular expression that describes a trepanjs location generally shown
+;; realgud-loc-pat that describes a trepanjs location generally shown
 ;; before a command prompt.
 ;; For example:
 ;;   break in /home/indutny/Code/git/indutny/myscript.js:1
@@ -51,7 +51,7 @@ realgud-loc-pat struct")
        :char-offset-group 3
        ))
 
-;; Regular expression that describes a trepanjs command prompt
+;; realgud-loc-pat that describes a trepanjs command prompt
 ;; For example:
 ;;   (trepanjs):
 (setf (gethash "prompt" realgud:trepanjs-pat-hash)
@@ -59,7 +59,7 @@ realgud-loc-pat struct")
        :regexp (format "^\\(?:%s\\)*(+trepanjs)+ " realgud:js-term-escape)
        ))
 
-;;  Regular expression that describes a "breakpoint set" line
+;;  realgud-loc-pat that describes a "breakpoint set" line
 ;; For example:
 ;;  Breakpoint 2 set in file /tmp/gcd.js, line 2.
 ;;  Breakpoint 3 set in file /usr/lib/nodejs/module.js [module.js], line 380.
@@ -73,7 +73,7 @@ realgud-loc-pat struct")
        :file-group 2
        :line-group 3))
 
-;; Regular expression that describes a debugger "delete" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "delete" (breakpoint) response.
 ;; For example:
 ;;   Deleted breakpoint 1
 (setf (gethash "brkpt-del" realgud:trepanjs-pat-hash)
@@ -81,7 +81,7 @@ realgud-loc-pat struct")
        :regexp "^Deleted breakpoint \\(\\([0-9]+ *\\)+\\)\n"
        :num 1))
 
-;; Regular expression that describes a V8 backtrace line.
+;; realgud-loc-pat that describes a V8 backtrace line.
 ;; For example:
 ;;    at repl:1:7
 ;;    at Interface.controlEval 
(/src/external-vcs/github/trepanjs/lib/interface.js:352:18)
@@ -89,7 +89,7 @@ realgud-loc-pat struct")
 (setf (gethash "lang-backtrace" realgud:trepanjs-pat-hash)
   realgud:js-backtrace-loc-pat)
 
-;; Regular expression that describes a debugger "delete" (breakpoint)
+;; realgud-loc-pat that describes a debugger "delete" (breakpoint)
 ;; response.
 ;; For example:
 ;;   Deleted breakpoint 1.
@@ -104,7 +104,7 @@ realgud-loc-pat struct")
 (defconst realgud:trepanjs-frame-num-regexp    realgud:regexp-captured-num)
 (defconst realgud:trepanjs-frame-module-regexp "[^ \t\n]+")
 
-;;  Regular expression that describes debugger "backtrace" command line.
+;;  realgud-loc-pat that describes debugger "backtrace" command line.
 ;;  e.g.
 ;; ## require called from file /usr/lib/nodejs/module.js [module.js] at line 
380:17
 ;; ## in file /src/external-vcs/github/trepanjs/example/gcd.js 
[/src/external-vcs/github/trepanjs/example/gcd.js] at line 2:12
@@ -131,7 +131,7 @@ realgud-loc-pat struct")
 ;; Top frame number
 (setf (gethash "top-frame-num" realgud:trepanjs-pat-hash) 0)
 
-;; Regular expression that for a termination message.
+;; realgud-loc-pat that for a termination message.
 (setf (gethash "termination" realgud:trepanjs-pat-hash)
        "^trepanjs: That's all, folks...\n")
 
diff --git a/realgud/debugger/zshdb/init.el b/realgud/debugger/zshdb/init.el
index 8a2c0a9..90af96b 100644
--- a/realgud/debugger/zshdb/init.el
+++ b/realgud/debugger/zshdb/init.el
@@ -32,13 +32,13 @@
 backtrace, prompt, etc.  The values of a hash entry is a
 realgud-loc-pat struct")
 
-;; Regular expression that describes a zshdb location generally shown
+;; realgud-loc-pat that describes a zshdb location generally shown
 ;; before a command prompt.
 ;; For example:
 ;;   (/etc/init.d/apparmor:35):
 (setf (gethash "loc" realgud:zshdb-pat-hash) realgud:POSIX-debugger-loc-pat)
 
-;; Regular expression that describes a zshdb command prompt
+;; realgud-loc-pat that describes a zshdb command prompt
 ;; For example:
 ;;   zshdb<10>
 ;;   zshdb<(5)>
@@ -50,29 +50,29 @@ realgud-loc-pat struct")
        :num 1
        ))
 
-;;  Regular expression that describes a "breakpoint set" line.
+;;  realgud-loc-pat that describes a "breakpoint set" line.
 (setf (gethash "brkpt-set" realgud:zshdb-pat-hash)
       realgud:POSIX-debugger-brkpt-set-pat)
 
-;; Regular expression that describes a debugger "delete" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "delete" (breakpoint) response.
 ;; For example:
 ;;   Deleted breakpoint 1.
 (setf (gethash "brkpt-del" realgud:zshdb-pat-hash)
       realgud:POSIX-debugger-brkpt-del-pat)
 
-;; Regular expression that describes a debugger "disable" (breakpoint) 
response.
+;; realgud-loc-pat that describes a debugger "disable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint entry 4 disabled.
 (setf (gethash "brkpt-disable" realgud:zshdb-pat-hash)
       realgud:POSIX-debugger-brkpt-disable-pat)
 
-;; Regular expression that describes a debugger "enable" (breakpoint) response.
+;; realgud-loc-pat that describes a debugger "enable" (breakpoint) response.
 ;; For example:
 ;;   Breakpoint entry 4 enabled.
 (setf (gethash "brkpt-enable" realgud:zshdb-pat-hash)
       realgud:POSIX-debugger-brkpt-enable-pat)
 
-;; Regular expression that describes a debugger "backtrace" command line.
+;; realgud-loc-pat that describes a debugger "backtrace" command line.
 ;; For example:
 ;;   ->0 in file `/etc/apparmor/fns' at line 24
 ;;   ##1 /etc/apparmor/fns called from file `/etc/init.d/apparmor' at line 35
@@ -80,7 +80,7 @@ realgud-loc-pat struct")
 (setf (gethash "debugger-backtrace" realgud:zshdb-pat-hash)
       realgud:POSIX-debugger-backtrace-pat)
 
-;; Regular expression that for a termination message.
+;; realgud-loc-pat that for a termination message.
 (setf (gethash "termination" realgud:zshdb-pat-hash)
        "^zshdb: That's all, folks...\n")
 



reply via email to

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