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
4d6cebd8
Commit
4d6cebd8
authored
Aug 16, 1991
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
98bf0c8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
src/abbrev.c
src/abbrev.c
+8
-2
No files found.
src/abbrev.c
View file @
4d6cebd8
...
...
@@ -308,10 +308,16 @@ Returns t if expansion took place.")
else
if
(
uccount
)
{
/* Abbrev included some caps. Cap first initial of expansion */
idx
=
point
;
int
old_zv
=
ZV
;
int
old_pt
=
point
;
/* Don't let Fcapitalize_word operate on text after point. */
ZV
=
point
;
SET_PT
(
wordstart
);
Fcapitalize_word
(
make_number
(
1
));
SET_PT
(
idx
);
SET_PT
(
old_pt
);
ZV
=
old_zv
;
}
hook
=
XSYMBOL
(
sym
)
->
function
;
...
...
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