GNU bug report logs -
#23565
24.5; tcl-end-of-defun and tcl-eval-defun doesn't work reliable
Previous Next
Reported by: Rolf Ade <rolf <at> pointsman.de>
Date: Wed, 18 May 2016 01:38:02 UTC
Severity: normal
Tags: confirmed, fixed
Found in version 24.5
Fixed in version 27.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #34 received at 23565 <at> debbugs.gnu.org (full text, mbox):
Rolf Ade <rolf <at> pointsman.de> writes:
> * lisp/progmodes/tcl.el (tcl-calculate-indent) Fall back to old
> indentation method for tcl code at the start of the buffer before the
> first word matching an element out of tcl-proc-list.
>
> Copyright-paperwork-exempt: yes
>
> diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
> index 0fd3d6d1bf..db97230480 100644
> --- a/lisp/progmodes/tcl.el
> +++ b/lisp/progmodes/tcl.el
> @@ -817,7 +817,9 @@ tcl-calculate-indent
> found-next-line)
> (if parse-start
> (goto-char parse-start)
> - (beginning-of-defun))
> + (if (not (beginning-of-defun))
> + (let ((beginning-of-defun-function nil))
> + (beginning-of-defun))))
Hm... This does fix the indentation issue, but I wonder whether
tcl-beginning-of-defun-function should be fixed instead so that the
movement commands work better?
I don't use TCL, but the problem is that top-level (outside of
functions) that tcl-beginning-of-defun-function doesn't go to the start
of forms like:
if {$argc != 0} {
puts stderr "usage: $argv0"
}
But what should beginning-of-defun do outside of functions? It's not
documented in the doc string of that function...
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
This bug report was last modified 5 years and 281 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.