[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes
From: |
Vitalie Spinu |
Subject: |
Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]] |
Date: |
Sun, 24 Apr 2016 13:33:54 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.92 (gnu/linux) |
>> On Sun, Apr 24 2016 09:28, Achim Gratz wrote:
> Do a 'make extraclean' and try again.
Doesn't help either.
I have narrowed it down to adding an extra args to primitives. This is how I do
it right now.
5 files changed, 7 insertions(+), 6 deletions(-)
src/buffer.c | 2 +-
src/bytecode.c | 2 +-
src/editfns.c | 5 +++--
src/fileio.c | 2 +-
src/process.c | 2 +-
modified src/buffer.c
@@ -2165,7 +2165,7 @@ Any narrowing restriction in effect (see
`narrow-to-region') is removed,
so the buffer is truly empty after this. */)
(void)
{
- Fwiden ();
+ Fwiden (Qnil);
del_range (BEG, Z);
modified src/bytecode.c
@@ -1692,7 +1692,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector,
Lisp_Object maxdepth,
CASE (Bwiden):
BEFORE_POTENTIAL_GC ();
- PUSH (Fwiden ());
+ TOP = Fwiden (TOP);
AFTER_POTENTIAL_GC ();
NEXT;
modified src/editfns.c
@@ -3483,11 +3483,12 @@ DEFUN ("delete-and-extract-region",
Fdelete_and_extract_region,
return empty_unibyte_string;
return del_range_1 (XINT (start), XINT (end), 1, 1);
}
+
-DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
+DEFUN ("widen", Fwiden, Swiden, 0, 1, "",
doc: /* Remove restrictions (narrowing) from current buffer.
This allows the buffer's full text to be seen and edited. */)
- (void)
+ (Lisp_Object hard)
{
if (BEG != BEGV || Z != ZV)
current_buffer->clip_changed = 1;
modified src/fileio.c
@@ -4764,7 +4764,7 @@ write_region (Lisp_Object start, Lisp_Object end,
Lisp_Object filename,
This is useful in tar-mode. --Stef
XSETFASTINT (start, BEG);
XSETFASTINT (end, Z); */
- Fwiden ();
+ Fwiden (Qnil);
}
record_unwind_protect (build_annotations_unwind,
modified src/process.c
@@ -5514,7 +5514,7 @@ Otherwise it discards the output. */)
/* If the output marker is outside of the visible region, save
the restriction and widen. */
if (! (BEGV <= PT && PT <= ZV))
- Fwiden ();
+ Fwiden (Qnil);
/* Adjust the multibyteness of TEXT to that of the buffer. */
if (NILP (BVAR (current_buffer, enable_multibyte_characters))
And this is the error which `make bootstrap` gives:
make -C ../lisp autoloads EMACS="../src/bootstrap-emacs"
make[3]: Entering directory '/home/vspinu/bin/emacs-test/lisp'
GEN calendar/cal-loaddefs.el
Loading macroexp.elc...
appt.el:0:0: error: wrong-type-argument: (markerp
/home/vspinu/bin/emacs-test/lisp/calendar/appt.el)
Makefile:406: recipe for target 'calendar/cal-loaddefs.el' failed
make[3]: *** [calendar/cal-loaddefs.el] Error 255
make[3]: Leaving directory '/home/vspinu/bin/emacs-test/lisp'
Makefile:727: recipe for target '../lisp/loaddefs.el' failed
make[2]: *** [../lisp/loaddefs.el] Error 2
make[2]: Leaving directory '/home/vspinu/bin/emacs-test/src'
Makefile:398: recipe for target 'src' failed
make[1]: *** [src] Error 2
make[1]: Leaving directory '/home/vspinu/bin/emacs-test'
Makefile:1091: recipe for target 'bootstrap' failed
make: *** [bootstrap] Error 2
What am I doing wrong here?
Vitalie
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Dmitry Gutov, 2016/04/22
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Vitalie Spinu, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Achim Gratz, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]],
Vitalie Spinu <=
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Andreas Schwab, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Vitalie Spinu, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Andreas Schwab, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Vitalie Spinu, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Andreas Schwab, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Vitalie Spinu, 2016/04/24
- Re: [Patch] hard-widen-limits [was Re: Syntax tables for multiple modes [was: bug#22983: syntax-ppss returns wrong result.]], Andreas Schwab, 2016/04/24