Skip to content

Commit

Permalink
buffer-string のキーワードとリファレンスを追加 (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
x022235 committed Aug 3, 2012
1 parent d480634 commit 15eebde
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions etc/Lisp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ buffer-stream-buffer
buffer-stream-p
buffer-stream-point
buffer-stream-set-point
buffer-string
buffer-substring
bufferp
bury-buffer
Expand Down
27 changes: 27 additions & 0 deletions reference/reference.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5689,6 +5689,32 @@ buffer-streamであるストリームの入出力のポイントを指定しま
<file>builtin.l</file>
</chapter>

<chapter>
<title>buffer-string</title>
<type>Function</type>
<arguments>buffer-string &amp;optional BUFFER</arguments>
<package>editor</package>
<description>
バッファの内容をすべて文字列として返します。

narrow-to-region等でclipping制限がされている場合はclippingされた
領域を返します。

BUFFER : バッファを指定します。
指定がなければカレントバッファになります。

この関数は以下の式と等価です。

(buffer-substring (point-min) (point-max))

補足:
xyzzy 0.2.2.243 から利用可能です。
</description>
<seealso>buffer-substring</seealso>
<section>文字列</section>
<file>builtin.l</file>
</chapter>

<chapter>
<title>buffer-substring</title>
<type>Function</type>
Expand All @@ -5705,6 +5731,7 @@ buffer-streamであるストリームの入出力のポイントを指定しま
補足:
BUFFER 引数は xyzzy 0.2.2.243 から指定可能です。
</description>
<seealso>buffer-string</seealso>
<seealso>substring</seealso>
<section>文字列</section>
<file>builtin.l</file>
Expand Down

0 comments on commit 15eebde

Please sign in to comment.