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
2cce8bfc
Commit
2cce8bfc
authored
Apr 14, 2009
by
Chong Yidong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
parent
1afbbf85
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
10 deletions
+15
-10
src/ChangeLog
src/ChangeLog
+4
-0
src/xdisp.c
src/xdisp.c
+11
-10
No files found.
src/ChangeLog
View file @
2cce8bfc
2009-04-14 Chong Yidong <cyd@stupidchicken.com>
* xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
2009-04-14 Kenichi Handa <handa@m17n.org>
* xfont.c (xfont_has_char): The font has C if C is ASCII and the
...
...
src/xdisp.c
View file @
2cce8bfc
...
...
@@ -25275,26 +25275,27 @@ The enable predicate for a menu binding should check this variable. */);
inhibit_menubar_update = 0;
DEFVAR_LISP ("wrap-prefix", &Vwrap_prefix,
doc: /* Prefix
added to the beginning of all continuation lines at display-
time.
May be a string, an image, or a stretch-glyph such as used by the
`display' text-
property.
doc: /* Prefix
prepended to all continuation lines at display
time.
The value may be a string, an image, or a stretch-glyph; it is
interpreted in the same way as the value of a `display' text
property.
This variable is overridden by any `wrap-prefix' text-property.
This variable is overridden by any `wrap-prefix' text or overlay
property.
To add a prefix to non-continuation lines, use
the `line-prefix' variable
. */);
To add a prefix to non-continuation lines, use
`line-prefix'
. */);
Vwrap_prefix = Qnil;
staticpro (&Qwrap_prefix);
Qwrap_prefix = intern ("wrap-prefix");
Fmake_variable_buffer_local (Qwrap_prefix);
DEFVAR_LISP ("line-prefix", &Vline_prefix,
doc: /* Prefix
added to the beginning of all non-continuation lines at display-
time.
May be a string, an image, or a stretch-glyph such as used by the
`display' text-
property.
doc: /* Prefix
prepended to all non-continuation lines at display
time.
The value may be a string, an image, or a stretch-glyph; it is
interpreted in the same way as the value of a `display' text
property.
This variable is overridden by any `line-prefix' text
-
property.
This variable is overridden by any `line-prefix' text
property.
To add a prefix to continuation lines, use
the `wrap-prefix' variable
. */);
To add a prefix to continuation lines, use
`wrap-prefix'
. */);
Vline_prefix = Qnil;
staticpro (&Qline_prefix);
Qline_prefix = intern ("line-prefix");
...
...
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