Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
b7aae902
Commit
b7aae902
authored
Jun 08, 2005
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
4e370af2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
1 deletion
+45
-1
etc/NEWS
etc/NEWS
+8
-0
lisp/ChangeLog
lisp/ChangeLog
+8
-0
lispref/ChangeLog
lispref/ChangeLog
+5
-0
src/ChangeLog
src/ChangeLog
+24
-1
No files found.
etc/NEWS
View file @
b7aae902
...
...
@@ -3528,6 +3528,14 @@ properties from surrounding text.
element, if the last match was on a buffer. `set-match-data'
accepts such a list for restoring the match state.
+++
*** Functions `match-data' and `set-match-data' now have an optional
argument `reseat'. When non-nil, all markers in the match data list
passed to these function will be reseated to point to nowhere, and if
the value of `reseat' is `evaporate', the markers are put onto the
free list. Note that no other references to those markers must exist
if `evaporate' is specified for the `reseat' argument.
+++
*** The default value of `sentence-end' is now defined using the new
variable `sentence-end-without-space', which contains such characters
...
...
lisp/ChangeLog
View file @
b7aae902
2005-06-09 Kim F. Storm <storm@cua.dk>
* subr.el (save-match-data): Add RESEAT arg `evaporate' to
set-match-data to free markers in match-data.
* replace.el (replace-match-data): Pass RESEAT arg `t' to
match-data to unchain markers in match-data.
2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
...
...
lispref/ChangeLog
View file @
b7aae902
2005-06-09 Kim F. Storm <storm@cua.dk>
* searching.texi (Entire Match Data): Explain new `reseat' argument to
match-data and set-match-data.
2005-06-08 Richard M. Stallman <rms@gnu.org>
* searching.texi (Entire Match Data): Clarify when match-data
...
...
src/ChangeLog
View file @
b7aae902
2005-06-09 Kim F. Storm <storm@cua.dk>
* search.c (Fmatch_data): Add optional RESEAT arg. Unchain markers
in REUSE list if non-nil; free them if equal to evaporate.
(Fset_match_data): Add optional RESEAT arg. Unchain markers in LIST
if non-nil; free them if equal to evaporate. Use XCAR/XCDR.
(restore_search_regs): Rename from restore_match_data. Uses changed.
(unwind_set_match_data): New function.
(record_unwind_save_match_data): New function like save-match-data.
* lisp.h (Fmatch_data, Fset_match_data): Fix EXFUN.
(record_unwind_save_match_data): Add prototype.
(restore_search_regs): Rename from restore_match_data.
* composite.c (compose_chars_in_text):
* eval.c (do_autoload):
* macmenu.c (set_frame_menubar):
* process.c (read_process_output, exec_sentinel):
* xmenu.c (set_frame_menubar):
* xdisp.c (prepare_menu_bars, update_menu_bar, update_tool_bar):
* w32menu.c (set_frame_menubar):
Use record_unwind_save_match_data.
2005-06-08 Richard M. Stallman <rms@gnu.org>
* xdisp.c (get_next_display_element): Alter previous change:
...
...
@@ -14,7 +37,7 @@
* xdisp.c (note_mode_line_or_margin_highlight): Check
the overlapping of re-rendering area to avoid flickering.
(note_mouse_highlight): Call clear_mouse_face if PART
(note_mouse_highlight): Call clear_mouse_face if PART
is not ON_MODE_LINE nor ON_HEADER_LINE.
2005-06-07 Kim F. Storm <storm@cua.dk>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment