diff options
| author | Eli Zaretskii | 2007-01-20 15:33:34 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-01-20 15:33:34 +0000 |
| commit | 2d5ed88d3102acb7f290571900d5a6fc3cad824b (patch) | |
| tree | a157432d76b7cfc616e1dc0b22a4daea919344ef /src | |
| parent | fa6661a8991db2843754b2c7bc226721a62a04f5 (diff) | |
| download | emacs-2d5ed88d3102acb7f290571900d5a6fc3cad824b.tar.gz emacs-2d5ed88d3102acb7f290571900d5a6fc3cad824b.zip | |
(ppt, xtype, xmisctype, xint, xptr, xmarker, xframe)
(xbuffer, xcons, xcar, xcdr): Fix doc strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 7a96d3b9733..c41914ef442 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -158,7 +158,8 @@ define ppt | |||
| 158 | printf " SZ=%d\n", $t->gap_size | 158 | printf " SZ=%d\n", $t->gap_size |
| 159 | end | 159 | end |
| 160 | document ppt | 160 | document ppt |
| 161 | Print point beg end narrow and gap for current buffer. | 161 | Print current buffer's point and boundaries. |
| 162 | Prints values of point, beg, end, narrow, and gap for current buffer. | ||
| 162 | end | 163 | end |
| 163 | 164 | ||
| 164 | # Print out iterator given as first arg | 165 | # Print out iterator given as first arg |
| @@ -520,7 +521,7 @@ define xtype | |||
| 520 | end | 521 | end |
| 521 | end | 522 | end |
| 522 | document xtype | 523 | document xtype |
| 523 | Print the type of $ assuming it is an Emacs Lisp value. | 524 | Print the type of $, assuming it is an Emacs Lisp value. |
| 524 | If the first type printed is Lisp_Vector or Lisp_Misc, | 525 | If the first type printed is Lisp_Vector or Lisp_Misc, |
| 525 | a second line gives the more precise type. | 526 | a second line gives the more precise type. |
| 526 | end | 527 | end |
| @@ -542,7 +543,7 @@ define xmisctype | |||
| 542 | echo \n | 543 | echo \n |
| 543 | end | 544 | end |
| 544 | document xmisctype | 545 | document xmisctype |
| 545 | Print the specific type of $ assuming it is some misc type. | 546 | Assume that $ is some misc type and print its specific type. |
| 546 | end | 547 | end |
| 547 | 548 | ||
| 548 | define xint | 549 | define xint |
| @@ -550,7 +551,7 @@ define xint | |||
| 550 | print $int | 551 | print $int |
| 551 | end | 552 | end |
| 552 | document xint | 553 | document xint |
| 553 | Print $ assuming it is an Emacs Lisp integer. This gets the sign right. | 554 | Print $ as an Emacs Lisp integer. This gets the sign right. |
| 554 | end | 555 | end |
| 555 | 556 | ||
| 556 | define xptr | 557 | define xptr |
| @@ -558,7 +559,7 @@ define xptr | |||
| 558 | print (void *) $ptr | 559 | print (void *) $ptr |
| 559 | end | 560 | end |
| 560 | document xptr | 561 | document xptr |
| 561 | Print the pointer portion of $ assuming it is an Emacs Lisp value. | 562 | Print the pointer portion of an Emacs Lisp value in $. |
| 562 | end | 563 | end |
| 563 | 564 | ||
| 564 | define xmarker | 565 | define xmarker |
| @@ -566,7 +567,8 @@ define xmarker | |||
| 566 | print (struct Lisp_Marker *) $ptr | 567 | print (struct Lisp_Marker *) $ptr |
| 567 | end | 568 | end |
| 568 | document xmarker | 569 | document xmarker |
| 569 | Print $ as a marker pointer assuming it is an Emacs Lisp marker value. | 570 | Print $ as a marker pointer. |
| 571 | This command assumes that $ is an Emacs Lisp marker value. | ||
| 570 | end | 572 | end |
| 571 | 573 | ||
| 572 | define xoverlay | 574 | define xoverlay |
| @@ -695,7 +697,8 @@ define xframe | |||
| 695 | echo \n | 697 | echo \n |
| 696 | end | 698 | end |
| 697 | document xframe | 699 | document xframe |
| 698 | Print $ as a frame pointer assuming it is an Emacs Lisp frame value. | 700 | Print $ as a frame pointer. |
| 701 | This command assumes $ is an Emacs Lisp frame value. | ||
| 699 | end | 702 | end |
| 700 | 703 | ||
| 701 | define xcompiled | 704 | define xcompiled |
| @@ -778,8 +781,8 @@ define xbuffer | |||
| 778 | echo \n | 781 | echo \n |
| 779 | end | 782 | end |
| 780 | document xbuffer | 783 | document xbuffer |
| 781 | Set $ as a buffer pointer assuming it is an Emacs Lisp buffer value. | 784 | Set $ as a buffer pointer and the name of the buffer. |
| 782 | Print the name of the buffer. | 785 | This command assumes $ is an Emacs Lisp buffer value. |
| 783 | end | 786 | end |
| 784 | 787 | ||
| 785 | define xhashtable | 788 | define xhashtable |
| @@ -798,7 +801,7 @@ define xcons | |||
| 798 | echo \n | 801 | echo \n |
| 799 | end | 802 | end |
| 800 | document xcons | 803 | document xcons |
| 801 | Print the contents of $ assuming it is an Emacs Lisp cons. | 804 | Print the contents of $ as an Emacs Lisp cons. |
| 802 | end | 805 | end |
| 803 | 806 | ||
| 804 | define nextcons | 807 | define nextcons |
| @@ -816,7 +819,7 @@ define xcar | |||
| 816 | print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0) | 819 | print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->car : 0) |
| 817 | end | 820 | end |
| 818 | document xcar | 821 | document xcar |
| 819 | Print the car of $ assuming it is an Emacs Lisp pair. | 822 | Assume that $ is an Emacs Lisp pair and print its car. |
| 820 | end | 823 | end |
| 821 | 824 | ||
| 822 | define xcdr | 825 | define xcdr |
| @@ -825,7 +828,7 @@ define xcdr | |||
| 825 | print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->u.cdr : 0) | 828 | print/x ($type == Lisp_Cons ? ((struct Lisp_Cons *) $ptr)->u.cdr : 0) |
| 826 | end | 829 | end |
| 827 | document xcdr | 830 | document xcdr |
| 828 | Print the cdr of $ assuming it is an Emacs Lisp pair. | 831 | Assume that $ is an Emacs Lisp pair and print its cdr. |
| 829 | end | 832 | end |
| 830 | 833 | ||
| 831 | define xlist | 834 | define xlist |