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
d97e62d2
Commit
d97e62d2
authored
Nov 29, 2001
by
Pavel Janík
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(studlify-word, studlify-region, studlify-buffer): Fix doc-string.
(studlify-buffer): Add autoload cookie.
parent
b37017c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lisp/play/studly.el
lisp/play/studly.el
+4
-3
No files found.
lisp/play/studly.el
View file @
d97e62d2
...
...
@@ -18,7 +18,7 @@
;;;###autoload
(
defun
studlify-region
(
begin
end
)
"Studlify-case the region"
"Studlify-case the region
.
"
(
interactive
"*r"
)
(
save-excursion
(
goto-char
begin
)
...
...
@@ -52,7 +52,7 @@
;;;###autoload
(
defun
studlify-word
(
count
)
"Studlify-case the current word, or COUNT words if given an argument"
"Studlify-case the current word, or COUNT words if given an argument
.
"
(
interactive
"*p"
)
(
let
((
begin
(
point
))
end
rb
re
)
(
forward-word
count
)
...
...
@@ -60,8 +60,9 @@
(
setq
rb
(
min
begin
end
)
re
(
max
begin
end
))
(
studlify-region
rb
re
)))
;;;###autoload
(
defun
studlify-buffer
()
"Studlify-case the current buffer"
"Studlify-case the current buffer
.
"
(
interactive
"*"
)
(
studlify-region
(
point-min
)
(
point-max
)))
...
...
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