1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

* lisp/indent.el (indent-according-to-mode): Apply syntax-propertize.

(indent-region): Use indent-according-to-mode.
* test/indent/octave.m: Remove one more `fixindent'.  Use `end'.
This commit is contained in:
Stefan Monnier 2010-09-18 18:21:16 +02:00
parent f816790bfb
commit f5632fb6c2
4 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
* indent.el (indent-according-to-mode): Apply syntax-propertize.
(indent-region): Use indent-according-to-mode.
2010-09-18 Eli Zaretskii <eliz@gnu.org>
* fringe.el (fringe-mode): Doc fix.

View File

@ -68,6 +68,7 @@ The buffer-local variable `indent-line-function' determines how to do this,
but the functions `indent-relative' and `indent-relative-maybe' are
special; we don't actually use them here."
(interactive)
(syntax-propertize (line-end-position))
(if (memq indent-line-function
'(indent-relative indent-relative-maybe))
;; These functions are used for tabbing, but can't be used for
@ -418,7 +419,7 @@ column to indent to; if it is nil, use one of the three methods above."
(goto-char start)
(while (< (point) end)
(or (and (bolp) (eolp))
(funcall indent-line-function))
(indent-according-to-mode))
(forward-line 1))
(move-marker end nil))))
(setq column (prefix-numeric-value column))

View File

@ -1,3 +1,7 @@
2010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
* indent/octave.m: Remove one more `fixindent'. Use `end'.
2010-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
* indent/octave.m: Remove some `fixindent' not needed any more.

View File

@ -6,7 +6,7 @@
if nargin ~= 1
print_usage()
endif
end
data = dlmread(fn, 3, 0);
@ -1412,7 +1412,7 @@ function create_pkgadddel (desc, packdir, nm, global_install)
for i = 1:length (lst)
nam = fullfile (packdir, "inst", lst(i).name);
fwrite (instfid, extract_pkg (nam, ['^[#%][#%]* *' nm ': *(.*)$']));
endfor # fixindent
endfor
## Search all C++ source files for PKG commands.
lst = dir (fullfile (packdir, "src", "*.cc"));