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
4
Issues
4
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
8550b998
Commit
8550b998
authored
Oct 19, 2004
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fdelete_and_extract_region): If region is empty, return null string.
parent
30b7be47
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
4 deletions
+23
-4
lisp/ChangeLog
lisp/ChangeLog
+14
-0
src/ChangeLog
src/ChangeLog
+7
-4
src/editfns.c
src/editfns.c
+2
-0
No files found.
lisp/ChangeLog
View file @
8550b998
2004-10-19 Richard M. Stallman <rms@gnu.org>
* textmodes/flyspell.el (flyspell-mode): Doc fix.
* eshell/em-unix.el (eshell-grep):
Don't bind compilation-process-setup-function.
* comint.el (comint-insert-input): Use @ in `interactive'.
(comint-input-filter-functions): Doc fix.
(comint-kill-whole-line, comint-get-source): Doc fix.
* progmodes/compile.el (compilation-setup):
Don't set buffer-read-only if MINOR is non-nil.
2004-10-19 Ulf Jasper <ulf.jasper@web.de>
* calendar/icalendar.el: Set coding to utf-8.
...
...
src/ChangeLog
View file @
8550b998
2004-10-19 Richard M. Stallman <rms@gnu.org>
* editfns.c (Fdelete_and_extract_region):
If region is empty, return null string.
2004-10-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left
...
...
@@ -21,10 +26,9 @@
arguments left and width to xg_update_scrollbar_pos.
(XTset_vertical_scroll_bar): Do x_clear_area for USE_GTK also.
2004-10-19 K
im F. Storm <storm@cua.dk
>
2004-10-19 K
enichi Handa <handa@m17n.org
>
* xdisp.c (display_mode_element): Fix display of wide chars.
From Kenichi Handa <handa@m17n.org>.
2004-10-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
...
...
@@ -36,8 +40,7 @@
* fontset.c (fs_load_font): Use fast_string_match_ignore_case for
comparing font names.
(fs_query_fontset): Use fast_string_match for comparing fontset
names.
(fs_query_fontset): Use fast_string_match for comparing fontset names.
(list_fontsets): Likewise.
* search.c (fast_string_match_ignore_case): New function.
...
...
src/editfns.c
View file @
8550b998
...
...
@@ -2844,6 +2844,8 @@ DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
Lisp_Object
start
,
end
;
{
validate_region
(
&
start
,
&
end
);
if
(
XINT
(
start
)
==
XINT
(
end
))
return
build_string
(
""
);
return
del_range_1
(
XINT
(
start
),
XINT
(
end
),
1
,
1
);
}
...
...
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