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
14e7c01f
Commit
14e7c01f
authored
Sep 21, 2019
by
Stefan Kangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/fns.c (Fbuffer_hash): Improve doc string.
parent
2879c3ec
Pipeline
#3248
passed with stage
in 54 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/fns.c
src/fns.c
+8
-1
No files found.
src/fns.c
View file @
14e7c01f
...
@@ -5409,7 +5409,14 @@ of the other hash types instead, e.g. sha256 or sha512. */)
...
@@ -5409,7 +5409,14 @@ of the other hash types instead, e.g. sha256 or sha512. */)
DEFUN
(
"buffer-hash"
,
Fbuffer_hash
,
Sbuffer_hash
,
0
,
1
,
0
,
DEFUN
(
"buffer-hash"
,
Fbuffer_hash
,
Sbuffer_hash
,
0
,
1
,
0
,
doc
:
/* Return a hash of the contents of BUFFER-OR-NAME.
doc
:
/* Return a hash of the contents of BUFFER-OR-NAME.
This hash is performed on the raw internal format of the buffer,
This hash is performed on the raw internal format of the buffer,
disregarding any coding systems. If nil, use the current buffer. */
)
disregarding any coding systems. If nil, use the current buffer.
This function is useful for comparing two buffers running in the same
Emacs, but is not guaranteed to return the same hash between different
Emacs versions.
It should not be used for anything security-related. See
`secure-hash' for these applications. */
)
(
Lisp_Object
buffer_or_name
)
(
Lisp_Object
buffer_or_name
)
{
{
Lisp_Object
buffer
;
Lisp_Object
buffer
;
...
...
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