<?xml version="1.0"?>
<paste-with-annotations>
  <paste>
    <number>
      <integer>40040</integer>
    </number>
    <user>
      <string>hroptatyr</string>
    </user>
    <title>
      <string>delete-word</string>
    </title>
    <contents>
      <string>;; current SXEmacs implementation

(defun delete-word (&amp;optional count)
  &quot;Delete characters forward until encountering the end of a word.
With optional argument COUNT, do this that many times.&quot;
  (interactive &quot;*p&quot;)
  (delete-region (point) (save-excursion (forward-word count) (point))))

(defun backward-delete-word (&amp;optional count)
  &quot;Delete characters backward until encountering the end of a word.
With argument, do this that many times.&quot;
  (interactive &quot;*p&quot;)
  (delete-word (- (or count 1))))

</string>
    </contents>
    <universal-time>
      <integer>3386088629</integer>
    </universal-time>
    <channel>
      <string>#XEmacs</string>
    </channel>
    <colorization-mode>
      <string></string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <null/>
    </is-unicode>
    <deletion-requested>
      <null/>
    </deletion-requested>
    <deletion-requested-email>
      <null/>
    </deletion-requested-email>
    <expiration-time>
      <null/>
    </expiration-time>
  </paste>
</paste-with-annotations>
