]> code.delx.au - gnu-emacs/blobdiff - lisp/play/studly.el
Remove compatibility with Emacs 24.3 in octave-mode
[gnu-emacs] / lisp / play / studly.el
index 474f969ae081017aa416a6c571d58fe67eca0ea2..ff1bf03e118a402091ba5061dbcd57fc66c3eec5 100644 (file)
@@ -1,11 +1,11 @@
 ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx)
 
 ;;; This is in the public domain, since it was distributed
-;;; by its author without a copyright notice in 1986.
+;;; by its author in 1986 without a copyright notice.
 
 ;; This file is part of GNU Emacs.
 
-;; Maintainer: FSF
+;; Maintainer: emacs-devel@gnu.org
 ;; Keywords: games
 
 ;;; Commentary:
     (setq begin (point))
     (while (and (<= (point) end)
                (not (looking-at "\\W*\\'")))
-      (forward-word 1)
-      (backward-word 1)
+      (forward-word-strictly 1)
+      (backward-word-strictly 1)
       (setq begin (max (point) begin))
-      (forward-word 1)
+      (forward-word-strictly 1)
       (let ((offset 0)
            (word-end (min (point) end))
            c)
@@ -55,7 +55,7 @@
   "Studlify-case the current word, or COUNT words if given an argument."
   (interactive "*p")
   (let ((begin (point)) end rb re)
-    (forward-word count)
+    (forward-word-strictly count)
     (setq end (point))
     (setq rb (min begin end) re (max begin end))
     (studlify-region rb re)))