changeset 2513:9ffb839e922b

[project @ 1996-11-14 17:26:26 by jwe]
author jwe
date Thu, 14 Nov 1996 17:26:39 +0000
parents fda09c1e787e
children 3db2876cdc1a
files ChangeLog emacs/octave.el
diffstat 2 files changed, 9 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Nov 14 08:39:47 1996 +0000
+++ b/ChangeLog	Thu Nov 14 17:26:39 1996 +0000
@@ -1,5 +1,11 @@
 Thu Nov 14 00:07:31 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* emacs/octave.el: Update to version 0.8.6, from Kurt Hornik.
+
+	* Makeconf.in (do-subst-config-values, do-subst-default-values):
+	Stript directory part from $@.
+	* octMakefile.in (octave-bug, mkoctfile): Likewise.
+
 	* configure.in (RLD_FLAG): Surround case pattern in changequote.
 
 	* Version 1.92.
--- a/emacs/octave.el	Thu Nov 14 08:39:47 1996 +0000
+++ b/emacs/octave.el	Thu Nov 14 17:26:39 1996 +0000
@@ -5,7 +5,7 @@
 ;; Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
 ;; Author: John Eaton <jwe@bevo.che.wisc.edu>
 ;; Maintainer: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
-;; Version: 0.8.5
+;; Version: 0.8.6
 ;; Keywords: languages
 
 ;; This file is not yet a part of GNU Emacs.  It is part of Octave.
@@ -34,7 +34,7 @@
 
 ;;; Code:
 
-(defconst octave-version "0.8.5")
+(defconst octave-version "0.8.6")
 (defconst octave-help-address
   "Kurt.Hornik@ci.tuwien.ac.at"
   "Address for Octave mode bug reports")
@@ -483,10 +483,6 @@
   (setq comment-start-skip octave-comment-start-skip)
   (make-local-variable 'comment-indent-function)
   (setq comment-indent-function 'octave-comment-indent)
-  (make-local-variable 'block-comment-start)
-  (setq block-comment-start octave-block-comment-start)
-  (make-local-variable 'block-comment-end)
-  (setq block-comment-end "")
 
   (make-local-variable 'parse-sexp-ignore-comments)
   (setq parse-sexp-ignore-comments t)
@@ -1131,7 +1127,7 @@
 	       (delete-region (match-beginning 0) (match-end 0))
 	       (fixup-whitespace)
 	       (move-to-column cfc))))
-       (skip-syntax-forward "\\w")
+       (forward-word 1)
        (delete-horizontal-space)
        (if (or (< (current-column) cfc)
 	       (and (= (current-column) cfc) (eolp)))