Update of /project/mcclim/cvsroot/mcclim/Doc In directory clnet:/tmp/cvs-serv20973/Doc
Modified Files: drei.texi Log Message: Added mention of DREI-USER package.
--- /project/mcclim/cvsroot/mcclim/Doc/drei.texi 2006/12/21 12:22:02 1.2 +++ /project/mcclim/cvsroot/mcclim/Doc/drei.texi 2006/12/22 15:37:33 1.3 @@ -1177,11 +1177,11 @@
A common text editing task is to repeat the word at point, but for some reason, Drei does not come with a command to do this, so we need to -write our own. Fortunately, Drei is extensible software. We're going to -put our command in the @package{DREI-COMMANDS} package, though, -strictly, that is an internal package. We're going to create a standard -CLIM command named @cl{com-repeat-word} in the command table -@cl{editing-table}. We'll clone the current point, move it a word +write our own. Fortunately, Drei is extensible software, and to that +end, a @package{DREI-USER} package is provided that is intended for user +customizations. We're going to create a standard CLIM command named +@cl{com-repeat-word} in the command table @cl{editing-table}. The +implementation consists of cloning the current point, move it a word backward, and insert into the buffer the sequence delimited by point and our moved mark. Our command takes no arguments.