2015-09-25 12:32:13 +03:00
|
|
|
|
@c -*- mode: texinfo; coding: utf-8 -*-
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@c This is part of the GNU Emacs Lisp Reference Manual.
|
2025-01-01 07:39:17 +00:00
|
|
|
|
@c Copyright (C) 1990--1995, 1998--1999, 2001--2025 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
|
@c Foundation, Inc.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@c See the file elisp.texi for copying conditions.
|
2012-05-26 18:34:14 -07:00
|
|
|
|
@node Strings and Characters
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@chapter Strings and Characters
|
|
|
|
|
@cindex strings
|
|
|
|
|
@cindex character arrays
|
|
|
|
|
@cindex characters
|
|
|
|
|
@cindex bytes
|
|
|
|
|
|
|
|
|
|
A string in Emacs Lisp is an array that contains an ordered sequence
|
|
|
|
|
of characters. Strings are used as names of symbols, buffers, and
|
|
|
|
|
files; to send messages to users; to hold text being copied between
|
|
|
|
|
buffers; and for many other purposes. Because strings are so important,
|
|
|
|
|
Emacs Lisp has many functions expressly for manipulating them. Emacs
|
|
|
|
|
Lisp programs use strings more often than individual characters.
|
|
|
|
|
|
|
|
|
|
@xref{Strings of Events}, for special considerations for strings of
|
|
|
|
|
keyboard character events.
|
|
|
|
|
|
|
|
|
|
@menu
|
|
|
|
|
* Basics: String Basics. Basic properties of strings and characters.
|
|
|
|
|
* Predicates for Strings:: Testing whether an object is a string or char.
|
|
|
|
|
* Creating Strings:: Functions to allocate new strings.
|
|
|
|
|
* Modifying Strings:: Altering the contents of an existing string.
|
|
|
|
|
* Text Comparison:: Comparing characters or strings.
|
|
|
|
|
* String Conversion:: Converting to and from characters and strings.
|
|
|
|
|
* Formatting Strings:: @code{format}: Emacs's analogue of @code{printf}.
|
2020-05-28 00:53:42 +01:00
|
|
|
|
* Custom Format Strings:: Formatting custom @code{format} specifications.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
* Case Conversion:: Case conversion functions.
|
Untabify doc/lispref/*.texi.
* abbrevs.texi, commands.texi, compile.texi, debugging.texi:
* display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
* frames.texi, functions.texi, internals.texi, keymaps.texi:
* loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
* searching.texi, sequences.texi, strings.texi, syntax.texi:
* text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
Untabify Texinfo files.
2010-06-22 20:36:56 -07:00
|
|
|
|
* Case Tables:: Customizing case conversion.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
|
|
@node String Basics
|
|
|
|
|
@section String and Character Basics
|
|
|
|
|
|
2012-09-30 17:18:38 +08:00
|
|
|
|
A character is a Lisp object which represents a single character of
|
|
|
|
|
text. In Emacs Lisp, characters are simply integers; whether an
|
|
|
|
|
integer is a character or not is determined only by how it is used.
|
|
|
|
|
@xref{Character Codes}, for details about character representation in
|
|
|
|
|
Emacs.
|
|
|
|
|
|
|
|
|
|
A string is a fixed sequence of characters. It is a type of
|
2024-01-13 18:08:49 +01:00
|
|
|
|
sequence called an @dfn{array}, meaning that its length is fixed and
|
2012-09-30 17:18:38 +08:00
|
|
|
|
cannot be altered once it is created (@pxref{Sequences Arrays
|
|
|
|
|
Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated
|
|
|
|
|
by a distinguished character code.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
Since strings are arrays, and therefore sequences as well, you can
|
2014-03-09 12:36:51 +01:00
|
|
|
|
operate on them with the general array and sequence functions documented
|
2020-05-16 17:17:00 -07:00
|
|
|
|
in @ref{Sequences Arrays Vectors}. For example, you can access
|
|
|
|
|
individual characters in a string using the function @code{aref}
|
|
|
|
|
(@pxref{Array Functions}).
|
2012-09-30 17:18:38 +08:00
|
|
|
|
|
|
|
|
|
There are two text representations for non-@acronym{ASCII}
|
|
|
|
|
characters in Emacs strings (and in buffers): unibyte and multibyte.
|
|
|
|
|
For most Lisp programming, you don't need to be concerned with these
|
|
|
|
|
two representations. @xref{Text Representations}, for details.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2008-12-05 16:54:24 +00:00
|
|
|
|
Sometimes key sequences are represented as unibyte strings. When a
|
|
|
|
|
unibyte string is a key sequence, string elements in the range 128 to
|
|
|
|
|
255 represent meta characters (which are large integers) rather than
|
2009-02-22 00:22:46 +00:00
|
|
|
|
character codes in the range 128 to 255. Strings cannot hold
|
|
|
|
|
characters that have the hyper, super or alt modifiers; they can hold
|
|
|
|
|
@acronym{ASCII} control characters, but no other control characters.
|
|
|
|
|
They do not distinguish case in @acronym{ASCII} control characters.
|
|
|
|
|
If you want to store such characters in a sequence, such as a key
|
|
|
|
|
sequence, you must use a vector instead of a string. @xref{Character
|
|
|
|
|
Type}, for more information about keyboard input characters.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
Strings are useful for holding regular expressions. You can also
|
|
|
|
|
match regular expressions against strings with @code{string-match}
|
|
|
|
|
(@pxref{Regexp Search}). The functions @code{match-string}
|
|
|
|
|
(@pxref{Simple Match Data}) and @code{replace-match} (@pxref{Replacing
|
|
|
|
|
Match}) are useful for decomposing and modifying strings after
|
|
|
|
|
matching regular expressions against them.
|
|
|
|
|
|
|
|
|
|
Like a buffer, a string can contain text properties for the characters
|
|
|
|
|
in it, as well as the characters themselves. @xref{Text Properties}.
|
|
|
|
|
All the Lisp primitives that copy text from strings to buffers or other
|
|
|
|
|
strings also copy the properties of the characters being copied.
|
|
|
|
|
|
|
|
|
|
@xref{Text}, for information about functions that display strings or
|
|
|
|
|
copy them into buffers. @xref{Character Type}, and @ref{String Type},
|
|
|
|
|
for information about the syntax of characters and strings.
|
|
|
|
|
@xref{Non-ASCII Characters}, for functions to convert between text
|
|
|
|
|
representations and to encode and decode character codes.
|
Document constant vs mutable objects better
This patch builds on a suggested patch by Mattias Engdegård
and on further comments by Eli Zaretskii.
Original bug report by Kevin Vigouroux (Bug#40671).
* doc/lispintro/emacs-lisp-intro.texi (set & setq, Review)
(setcar, Lists diagrammed, Mail Aliases, Indent Tabs Mode):
setq is a special form, not a function or command.
* doc/lispintro/emacs-lisp-intro.texi (setcar):
* doc/lispref/lists.texi (Modifying Lists, Rearrangement):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions, Vectors):
* doc/lispref/strings.texi (String Basics, Modifying Strings):
Mention mutable vs constant objects.
* doc/lispintro/emacs-lisp-intro.texi (setcar, setcdr)
(kill-new function, cons & search-fwd Review):
* doc/lispref/edebug.texi (Printing in Edebug):
* doc/lispref/keymaps.texi (Changing Key Bindings):
* doc/lispref/lists.texi (Setcar, Setcdr, Rearrangement)
(Sets And Lists, Association Lists, Plist Access):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions):
* doc/lispref/strings.texi (Text Comparison):
Fix examples so that they do not try to change constants.
2020-04-18 12:59:17 -07:00
|
|
|
|
Also, note that @code{length} should @emph{not} be used for computing
|
|
|
|
|
the width of a string on display; use @code{string-width} (@pxref{Size
|
|
|
|
|
of Displayed Text}) instead.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@node Predicates for Strings
|
2012-09-30 17:18:38 +08:00
|
|
|
|
@section Predicates for Strings
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
|
@cindex predicates for strings
|
|
|
|
|
@cindex string predicates
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
For more information about general sequence and array predicates,
|
|
|
|
|
see @ref{Sequences Arrays Vectors}, and @ref{Arrays}.
|
|
|
|
|
|
|
|
|
|
@defun stringp object
|
|
|
|
|
This function returns @code{t} if @var{object} is a string, @code{nil}
|
|
|
|
|
otherwise.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-or-null-p object
|
2008-11-25 03:52:05 +00:00
|
|
|
|
This function returns @code{t} if @var{object} is a string or
|
2009-01-05 16:06:19 +00:00
|
|
|
|
@code{nil}. It returns @code{nil} otherwise.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun char-or-string-p object
|
|
|
|
|
This function returns @code{t} if @var{object} is a string or a
|
|
|
|
|
character (i.e., an integer), @code{nil} otherwise.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@node Creating Strings
|
|
|
|
|
@section Creating Strings
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
|
@cindex creating strings
|
|
|
|
|
@cindex string creation
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
The following functions create strings, either from scratch, or by
|
2021-01-02 10:27:28 +02:00
|
|
|
|
putting strings together, or by taking them apart. (For functions
|
|
|
|
|
that create strings based on the modified contents of other strings,
|
|
|
|
|
like @code{string-replace} and @code{replace-regexp-in-string}, see
|
2020-12-29 02:19:03 +01:00
|
|
|
|
@ref{Search and Replace}.)
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2017-11-04 15:00:25 +02:00
|
|
|
|
@defun make-string count character &optional multibyte
|
2007-09-06 04:25:08 +00:00
|
|
|
|
This function returns a string made up of @var{count} repetitions of
|
|
|
|
|
@var{character}. If @var{count} is negative, an error is signaled.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(make-string 5 ?x)
|
|
|
|
|
@result{} "xxxxx"
|
|
|
|
|
(make-string 0 ?x)
|
|
|
|
|
@result{} ""
|
|
|
|
|
@end example
|
|
|
|
|
|
2017-11-04 15:00:25 +02:00
|
|
|
|
Normally, if @var{character} is an @acronym{ASCII} character, the
|
|
|
|
|
result is a unibyte string. But if the optional argument
|
|
|
|
|
@var{multibyte} is non-@code{nil}, the function will produce a
|
|
|
|
|
multibyte string instead. This is useful when you later need to
|
|
|
|
|
concatenate the result with non-@acronym{ASCII} strings or replace
|
|
|
|
|
some of its characters with non-@acronym{ASCII} characters.
|
|
|
|
|
|
2010-11-21 13:07:47 -05:00
|
|
|
|
Other functions to compare with this one include @code{make-vector}
|
|
|
|
|
(@pxref{Vectors}) and @code{make-list} (@pxref{Building Lists}).
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string &rest characters
|
|
|
|
|
This returns a string containing the characters @var{characters}.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(string ?a ?b ?c)
|
|
|
|
|
@result{} "abc"
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
2016-02-01 19:01:34 +01:00
|
|
|
|
@defun substring string &optional start end
|
2007-09-06 04:25:08 +00:00
|
|
|
|
This function returns a new string which consists of those characters
|
|
|
|
|
from @var{string} in the range from (and including) the character at the
|
|
|
|
|
index @var{start} up to (but excluding) the character at the index
|
2016-02-01 19:01:34 +01:00
|
|
|
|
@var{end}. The first character is at index zero. With one argument,
|
|
|
|
|
this function just copies @var{string}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(substring "abcdefg" 0 3)
|
|
|
|
|
@result{} "abc"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@noindent
|
2009-02-22 00:22:46 +00:00
|
|
|
|
In the above example, the index for @samp{a} is 0, the index for
|
|
|
|
|
@samp{b} is 1, and the index for @samp{c} is 2. The index 3---which
|
2009-10-04 04:00:46 +00:00
|
|
|
|
is the fourth character in the string---marks the character position
|
|
|
|
|
up to which the substring is copied. Thus, @samp{abc} is copied from
|
|
|
|
|
the string @code{"abcdefg"}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
A negative number counts from the end of the string, so that @minus{}1
|
|
|
|
|
signifies the index of the last character of the string. For example:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(substring "abcdefg" -3 -1)
|
|
|
|
|
@result{} "ef"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
|
In this example, the index for @samp{e} is @minus{}3, the index for
|
|
|
|
|
@samp{f} is @minus{}2, and the index for @samp{g} is @minus{}1.
|
|
|
|
|
Therefore, @samp{e} and @samp{f} are included, and @samp{g} is excluded.
|
|
|
|
|
|
|
|
|
|
When @code{nil} is used for @var{end}, it stands for the length of the
|
|
|
|
|
string. Thus,
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(substring "abcdefg" -3 nil)
|
|
|
|
|
@result{} "efg"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
Omitting the argument @var{end} is equivalent to specifying @code{nil}.
|
|
|
|
|
It follows that @code{(substring @var{string} 0)} returns a copy of all
|
|
|
|
|
of @var{string}.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(substring "abcdefg" 0)
|
|
|
|
|
@result{} "abcdefg"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
|
But we recommend @code{copy-sequence} for this purpose (@pxref{Sequence
|
|
|
|
|
Functions}).
|
|
|
|
|
|
|
|
|
|
If the characters copied from @var{string} have text properties, the
|
|
|
|
|
properties are copied into the new string also. @xref{Text Properties}.
|
|
|
|
|
|
|
|
|
|
@code{substring} also accepts a vector for the first argument.
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(substring [a b (c) "d"] 1 3)
|
|
|
|
|
@result{} [b (c)]
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
A @code{wrong-type-argument} error is signaled if @var{start} is not
|
|
|
|
|
an integer or if @var{end} is neither an integer nor @code{nil}. An
|
|
|
|
|
@code{args-out-of-range} error is signaled if @var{start} indicates a
|
|
|
|
|
character following @var{end}, or if either integer is out of range
|
|
|
|
|
for @var{string}.
|
|
|
|
|
|
|
|
|
|
Contrast this function with @code{buffer-substring} (@pxref{Buffer
|
|
|
|
|
Contents}), which returns a string containing a portion of the text in
|
|
|
|
|
the current buffer. The beginning of a string is at index 0, but the
|
|
|
|
|
beginning of a buffer is at index 1.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun substring-no-properties string &optional start end
|
|
|
|
|
This works like @code{substring} but discards all text properties from
|
|
|
|
|
the value. Also, @var{start} may be omitted or @code{nil}, which is
|
|
|
|
|
equivalent to 0. Thus, @w{@code{(substring-no-properties
|
|
|
|
|
@var{string})}} returns a copy of @var{string}, with all text
|
|
|
|
|
properties removed.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun concat &rest sequences
|
|
|
|
|
@cindex copying strings
|
|
|
|
|
@cindex concatenating strings
|
2020-07-09 17:32:13 +02:00
|
|
|
|
This function returns a string consisting of the characters in the
|
2007-09-06 04:25:08 +00:00
|
|
|
|
arguments passed to it (along with their text properties, if any). The
|
|
|
|
|
arguments may be strings, lists of numbers, or vectors of numbers; they
|
|
|
|
|
are not themselves changed. If @code{concat} receives no arguments, it
|
|
|
|
|
returns an empty string.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(concat "abc" "-def")
|
|
|
|
|
@result{} "abc-def"
|
|
|
|
|
(concat "abc" (list 120 121) [122])
|
|
|
|
|
@result{} "abcxyz"
|
|
|
|
|
;; @r{@code{nil} is an empty sequence.}
|
|
|
|
|
(concat "abc" nil "-def")
|
|
|
|
|
@result{} "abc-def"
|
|
|
|
|
(concat "The " "quick brown " "fox.")
|
|
|
|
|
@result{} "The quick brown fox."
|
|
|
|
|
(concat)
|
|
|
|
|
@result{} ""
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@noindent
|
2020-07-09 17:32:13 +02:00
|
|
|
|
This function does not always allocate a new string. Callers are
|
|
|
|
|
advised not rely on the result being a new string nor on it being
|
|
|
|
|
@code{eq} to an existing string.
|
|
|
|
|
|
|
|
|
|
In particular, mutating the returned value may inadvertently change
|
|
|
|
|
another string, alter a constant string in the program, or even raise
|
|
|
|
|
an error. To obtain a string that you can safely mutate, use
|
|
|
|
|
@code{copy-sequence} on the result.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
For information about other concatenation functions, see the
|
|
|
|
|
description of @code{mapconcat} in @ref{Mapping Functions},
|
|
|
|
|
@code{vconcat} in @ref{Vector Functions}, and @code{append} in @ref{Building
|
2008-10-20 19:54:28 +00:00
|
|
|
|
Lists}. For concatenating individual command-line arguments into a
|
|
|
|
|
string to be used as a shell command, see @ref{Shell Arguments,
|
|
|
|
|
combine-and-quote-strings}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2013-12-23 15:55:08 +08:00
|
|
|
|
@defun split-string string &optional separators omit-nulls trim
|
2009-02-22 00:22:46 +00:00
|
|
|
|
This function splits @var{string} into substrings based on the regular
|
|
|
|
|
expression @var{separators} (@pxref{Regular Expressions}). Each match
|
|
|
|
|
for @var{separators} defines a splitting point; the substrings between
|
|
|
|
|
splitting points are made into a list, which is returned.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2017-05-19 14:44:33 +03:00
|
|
|
|
If @var{separators} is @code{nil} (or omitted), the default is the
|
|
|
|
|
value of @code{split-string-default-separators} and the function
|
|
|
|
|
behaves as if @var{omit-nulls} were @code{t}.
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
If @var{omit-nulls} is @code{nil} (or omitted), the result contains
|
|
|
|
|
null strings whenever there are two consecutive matches for
|
|
|
|
|
@var{separators}, or a match is adjacent to the beginning or end of
|
|
|
|
|
@var{string}. If @var{omit-nulls} is @code{t}, these null strings are
|
|
|
|
|
omitted from the result.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2017-05-19 14:44:33 +03:00
|
|
|
|
If the optional argument @var{trim} is non-@code{nil}, it should be a
|
|
|
|
|
regular expression to match text to trim from the beginning and end of
|
|
|
|
|
each substring. If trimming makes the substring empty, it is treated
|
|
|
|
|
as null.
|
|
|
|
|
|
|
|
|
|
If you need to split a string into a list of individual command-line
|
|
|
|
|
arguments suitable for @code{call-process} or @code{start-process},
|
|
|
|
|
see @ref{Shell Arguments, split-string-and-unquote}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2017-05-19 14:44:33 +03:00
|
|
|
|
Examples:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string " two words ")
|
|
|
|
|
@result{} ("two" "words")
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
The result is not @code{("" "two" "words" "")}, which would rarely be
|
|
|
|
|
useful. If you need such a result, use an explicit value for
|
|
|
|
|
@var{separators}:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string " two words "
|
|
|
|
|
split-string-default-separators)
|
|
|
|
|
@result{} ("" "two" "words" "")
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string "Soup is good food" "o")
|
|
|
|
|
@result{} ("S" "up is g" "" "d f" "" "d")
|
|
|
|
|
(split-string "Soup is good food" "o" t)
|
|
|
|
|
@result{} ("S" "up is g" "d f" "d")
|
|
|
|
|
(split-string "Soup is good food" "o+")
|
|
|
|
|
@result{} ("S" "up is g" "d f" "d")
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
Empty matches do count, except that @code{split-string} will not look
|
|
|
|
|
for a final empty match when it already reached the end of the string
|
|
|
|
|
using a non-empty match or when @var{string} is empty:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string "aooob" "o*")
|
|
|
|
|
@result{} ("" "a" "" "b" "")
|
|
|
|
|
(split-string "ooaboo" "o*")
|
|
|
|
|
@result{} ("" "" "a" "b" "")
|
|
|
|
|
(split-string "" "")
|
|
|
|
|
@result{} ("")
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
However, when @var{separators} can match the empty string,
|
|
|
|
|
@var{omit-nulls} is usually @code{t}, so that the subtleties in the
|
|
|
|
|
three previous examples are rarely relevant:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string "Soup is good food" "o*" t)
|
|
|
|
|
@result{} ("S" "u" "p" " " "i" "s" " " "g" "d" " " "f" "d")
|
|
|
|
|
(split-string "Nice doggy!" "" t)
|
|
|
|
|
@result{} ("N" "i" "c" "e" " " "d" "o" "g" "g" "y" "!")
|
|
|
|
|
(split-string "" "" t)
|
|
|
|
|
@result{} nil
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
Somewhat odd, but predictable, behavior can occur for certain
|
Restore some of the quoting in the manuals
* doc/lispref/windows.texi (Coordinates and Windows)
(Coordinates and Windows):
* doc/lispref/variables.texi (Lexical Binding)
(File Local Variables):
* doc/lispref/text.texi (Format Properties):
* doc/lispref/symbols.texi (Symbol Components):
* doc/lispref/strings.texi (Creating Strings):
* doc/lispref/sequences.texi (Sequence Functions):
* doc/lispref/searching.texi (Regexp Special, Regexp Search)
(Search and Replace):
* doc/lispref/processes.texi (Bindat Spec):
* doc/lispref/os.texi (Idle Timers):
* doc/lispref/objects.texi (Basic Char Syntax):
* doc/lispref/numbers.texi (Float Basics, Random Numbers):
* doc/lispref/nonascii.texi (Character Properties):
* doc/lispref/modes.texi (Major Mode Conventions, Mode Hooks)
(Mode Line Variables):
* doc/lispref/minibuf.texi (Text from Minibuffer):
* doc/lispref/loading.texi (Autoload):
* doc/lispref/keymaps.texi (Controlling Active Maps):
* doc/lispref/frames.texi (Frame Layout, Size and Position)
(Size Parameters, Implied Frame Resizing):
* doc/lispref/files.texi (Changing Files, Magic File Names):
* doc/lispref/eval.texi (Self-Evaluating Forms):
* doc/lispref/display.texi (Progress, Abstract Display)
(Abstract Display Example, Bidirectional Display):
* doc/lispref/commands.texi (Event Mod):
* doc/emacs/windows.texi (Displaying Buffers):
* doc/emacs/trouble.texi (Bug Criteria, Checklist):
* doc/emacs/text.texi (Enriched Text):
* doc/emacs/programs.texi (MixedCase Words):
* doc/emacs/picture-xtra.texi (Insert in Picture)
(Tabs in Picture):
* doc/emacs/misc.texi (Emacs Server, Printing):
* doc/emacs/mini.texi (Minibuffer History):
* doc/emacs/maintaining.texi (Old Revisions, VC Change Log)
(Pulling / Pushing):
* doc/emacs/killing.texi (Yanking, Cut and Paste, Clipboard):
* doc/emacs/help.texi (Help, Help Echo):
* doc/emacs/glossary.texi (Glossary):
* doc/emacs/frames.texi (Mouse Commands, Creating Frames)
(Frame Commands):
* doc/emacs/files.texi (Reverting, Saving, Directories):
* doc/emacs/entering.texi (Exiting):
* doc/emacs/emacs.texi (Top):
* doc/emacs/cmdargs.texi (Window Size X, Icons X):
* doc/emacs/anti.texi (Antinews): Restore quoting of text where
appropriate or replace quoting with @dfn.
* doc/misc/ediff.texi (Window and Frame Configuration):
* doc/lispref/processes.texi (Network Feature Testing):
* doc/lispref/display.texi (Display Margins): Quote the phrase
after "a.k.a." where appropriate.
2015-09-16 12:56:45 +03:00
|
|
|
|
``non-greedy'' values of @var{separators} that can prefer empty
|
2007-09-06 04:25:08 +00:00
|
|
|
|
matches over non-empty matches. Again, such values rarely occur in
|
|
|
|
|
practice:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(split-string "ooo" "o*" t)
|
|
|
|
|
@result{} nil
|
|
|
|
|
(split-string "ooo" "\\|o+" t)
|
|
|
|
|
@result{} ("o" "o" "o")
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defvar split-string-default-separators
|
|
|
|
|
The default value of @var{separators} for @code{split-string}. Its
|
|
|
|
|
usual value is @w{@code{"[ \f\t\n\r\v]+"}}.
|
|
|
|
|
@end defvar
|
|
|
|
|
|
2020-12-21 18:53:32 +01:00
|
|
|
|
@defun string-clean-whitespace string
|
|
|
|
|
Clean up the whitespace in @var{string} by collapsing stretches of
|
|
|
|
|
whitespace to a single space character, as well as removing all
|
|
|
|
|
whitespace from the start and the end of @var{string}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2021-03-24 09:22:40 +01:00
|
|
|
|
@defun string-trim-left string &optional regexp
|
|
|
|
|
Remove the leading text that matches @var{regexp} from @var{string}.
|
|
|
|
|
@var{regexp} defaults to @samp{[ \t\n\r]+}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-trim-right string &optional regexp
|
|
|
|
|
Remove the trailing text that matches @var{regexp} from @var{string}.
|
|
|
|
|
@var{regexp} defaults to @samp{[ \t\n\r]+}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-trim string &optional trim-left trim-right
|
|
|
|
|
Remove the leading text that matches @var{trim-left} and trailing text
|
2021-09-24 14:18:57 +02:00
|
|
|
|
that matches @var{trim-right} from @var{string}. Both regexps
|
2021-03-24 09:22:40 +01:00
|
|
|
|
default to @samp{[ \t\n\r]+}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2024-07-06 11:36:44 +03:00
|
|
|
|
@defun string-fill string width
|
|
|
|
|
Attempt to Word-wrap @var{string} so that it displays with lines no
|
|
|
|
|
wider than @var{width}. Filling is done on whitespace boundaries only.
|
|
|
|
|
If there are individual words that are longer than @var{width}, these
|
|
|
|
|
will not be shortened, and therefore @var{string} might be shown with
|
|
|
|
|
lines wider than @var{width} in that case.
|
2020-12-21 18:53:32 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
2020-12-25 05:58:09 +01:00
|
|
|
|
@defun string-limit string length &optional end coding-system
|
2021-10-30 10:26:38 +03:00
|
|
|
|
If @var{string} is shorter than @var{length} characters, @var{string}
|
|
|
|
|
is returned as is. Otherwise, return a substring of @var{string}
|
|
|
|
|
consisting of the first @var{length} characters. If the optional
|
|
|
|
|
@var{end} parameter is given, return a string of the @var{length} last
|
2020-12-22 06:54:32 +01:00
|
|
|
|
characters instead.
|
2020-12-25 05:58:09 +01:00
|
|
|
|
|
|
|
|
|
If @var{coding-system} is non-@code{nil}, @var{string} will be encoded
|
|
|
|
|
before limiting, and the result will be a unibyte string that's
|
2021-10-30 10:26:38 +03:00
|
|
|
|
shorter than @code{length} bytes. If @var{string} contains characters
|
|
|
|
|
that are encoded into several bytes (for instance, when using
|
2020-12-25 05:58:09 +01:00
|
|
|
|
@code{utf-8}), the resulting unibyte string is never truncated in the
|
|
|
|
|
middle of a character representation.
|
2021-10-30 10:26:38 +03:00
|
|
|
|
|
|
|
|
|
This function measures the string length in characters or bytes, and
|
|
|
|
|
thus is generally inappropriate if you need to shorten strings for
|
|
|
|
|
display purposes; use @code{truncate-string-to-width} or
|
2021-10-30 20:29:40 +03:00
|
|
|
|
@code{window-text-pixel-size} or @code{string-glyph-split} instead
|
|
|
|
|
(@pxref{Size of Displayed Text}).
|
2020-12-21 18:53:32 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
2022-04-30 12:46:40 +02:00
|
|
|
|
@defun string-lines string &optional omit-nulls keep-newlines
|
2020-12-21 18:53:32 +01:00
|
|
|
|
Split @var{string} into a list of strings on newline boundaries. If
|
2022-04-30 14:54:35 +03:00
|
|
|
|
the optional argument @var{omit-nulls} is non-@code{nil}, remove empty
|
|
|
|
|
lines from the results. If the optional argument @var{keep-newlines}
|
|
|
|
|
is non-@code{nil}, don't remove the trailing newlines from the result
|
|
|
|
|
strings.
|
2020-12-21 20:01:28 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
2020-12-22 06:59:25 +01:00
|
|
|
|
@defun string-pad string length &optional padding start
|
2022-05-28 10:55:01 +03:00
|
|
|
|
Pad @var{string} to be of the given @var{length} using @var{padding}
|
|
|
|
|
as the padding character. @var{padding} defaults to the space
|
|
|
|
|
character. If @var{string} is longer than @var{length}, no padding is
|
|
|
|
|
done. If @var{start} is @code{nil} or omitted, the padding is
|
|
|
|
|
appended to the characters of @var{string}, and if it's
|
|
|
|
|
non-@code{nil}, the padding is prepended to @var{string}'s characters.
|
2020-12-21 22:05:37 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-chop-newline string
|
|
|
|
|
Remove the final newline, if any, from @var{string}.
|
2020-12-21 18:53:32 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@node Modifying Strings
|
|
|
|
|
@section Modifying Strings
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
|
@cindex modifying strings
|
|
|
|
|
@cindex string modification
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
Document constant vs mutable objects better
This patch builds on a suggested patch by Mattias Engdegård
and on further comments by Eli Zaretskii.
Original bug report by Kevin Vigouroux (Bug#40671).
* doc/lispintro/emacs-lisp-intro.texi (set & setq, Review)
(setcar, Lists diagrammed, Mail Aliases, Indent Tabs Mode):
setq is a special form, not a function or command.
* doc/lispintro/emacs-lisp-intro.texi (setcar):
* doc/lispref/lists.texi (Modifying Lists, Rearrangement):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions, Vectors):
* doc/lispref/strings.texi (String Basics, Modifying Strings):
Mention mutable vs constant objects.
* doc/lispintro/emacs-lisp-intro.texi (setcar, setcdr)
(kill-new function, cons & search-fwd Review):
* doc/lispref/edebug.texi (Printing in Edebug):
* doc/lispref/keymaps.texi (Changing Key Bindings):
* doc/lispref/lists.texi (Setcar, Setcdr, Rearrangement)
(Sets And Lists, Association Lists, Plist Access):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions):
* doc/lispref/strings.texi (Text Comparison):
Fix examples so that they do not try to change constants.
2020-04-18 12:59:17 -07:00
|
|
|
|
You can alter the contents of a mutable string via operations
|
2020-05-16 17:17:00 -07:00
|
|
|
|
described in this section. @xref{Mutability}.
|
Document constant vs mutable objects better
This patch builds on a suggested patch by Mattias Engdegård
and on further comments by Eli Zaretskii.
Original bug report by Kevin Vigouroux (Bug#40671).
* doc/lispintro/emacs-lisp-intro.texi (set & setq, Review)
(setcar, Lists diagrammed, Mail Aliases, Indent Tabs Mode):
setq is a special form, not a function or command.
* doc/lispintro/emacs-lisp-intro.texi (setcar):
* doc/lispref/lists.texi (Modifying Lists, Rearrangement):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions, Vectors):
* doc/lispref/strings.texi (String Basics, Modifying Strings):
Mention mutable vs constant objects.
* doc/lispintro/emacs-lisp-intro.texi (setcar, setcdr)
(kill-new function, cons & search-fwd Review):
* doc/lispref/edebug.texi (Printing in Edebug):
* doc/lispref/keymaps.texi (Changing Key Bindings):
* doc/lispref/lists.texi (Setcar, Setcdr, Rearrangement)
(Sets And Lists, Association Lists, Plist Access):
* doc/lispref/sequences.texi (Sequence Functions)
(Array Functions):
* doc/lispref/strings.texi (Text Comparison):
Fix examples so that they do not try to change constants.
2020-04-18 12:59:17 -07:00
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
The most basic way to alter the contents of an existing string is with
|
2022-06-05 11:28:10 +03:00
|
|
|
|
@code{aset} (@pxref{Array Functions}). @w{@code{(aset @var{string}
|
|
|
|
|
@var{idx} @var{char})}} stores @var{char} into @var{string} at character
|
|
|
|
|
index @var{idx}. It will automatically convert a pure-@acronym{ASCII}
|
|
|
|
|
@var{string} to a multibyte string (@pxref{Text Representations}) if
|
|
|
|
|
needed, but we recommend to always make sure @var{string} is multibyte
|
|
|
|
|
(e.g., by using @code{string-to-multibyte}, @pxref{Converting
|
|
|
|
|
Representations}), if @var{char} is a non-@acronym{ASCII} character, not
|
|
|
|
|
a raw byte.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
To clear out a string that contained a password, use
|
|
|
|
|
@code{clear-string}:
|
|
|
|
|
|
|
|
|
|
@defun clear-string string
|
2025-01-15 23:11:16 +01:00
|
|
|
|
This makes @var{string} a unibyte string, clears its contents to null
|
|
|
|
|
characters, and removes all text properties. It may also change
|
|
|
|
|
@var{string}'s length.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@need 2000
|
|
|
|
|
@node Text Comparison
|
|
|
|
|
@section Comparison of Characters and Strings
|
|
|
|
|
@cindex string equality
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
|
@cindex text comparison
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex string comparison
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex compare characters
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@defun char-equal character1 character2
|
|
|
|
|
This function returns @code{t} if the arguments represent the same
|
|
|
|
|
character, @code{nil} otherwise. This function ignores differences
|
|
|
|
|
in case if @code{case-fold-search} is non-@code{nil}.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(char-equal ?x ?x)
|
|
|
|
|
@result{} t
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(char-equal ?x ?X))
|
|
|
|
|
@result{} nil
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex compare strings
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@defun string-equal string1 string2
|
2007-09-06 04:25:08 +00:00
|
|
|
|
This function returns @code{t} if the characters of the two strings
|
|
|
|
|
match exactly. Symbols are also allowed as arguments, in which case
|
2012-01-23 12:23:50 +08:00
|
|
|
|
the symbol names are used. Case is always significant, regardless of
|
|
|
|
|
@code{case-fold-search}.
|
|
|
|
|
|
|
|
|
|
This function is equivalent to @code{equal} for comparing two strings
|
|
|
|
|
(@pxref{Equality Predicates}). In particular, the text properties of
|
2014-04-24 18:11:04 +03:00
|
|
|
|
the two strings are ignored; use @code{equal-including-properties} if
|
|
|
|
|
you need to distinguish between strings that differ only in their text
|
|
|
|
|
properties. However, unlike @code{equal}, if either argument is not a
|
2024-08-06 18:04:46 +02:00
|
|
|
|
string or symbol, @code{string-equal} signals an error.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-equal "abc" "abc")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} t
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-equal "abc" "ABC")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-equal "ab" "ABC")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
|
|
|
|
@end example
|
|
|
|
|
|
2022-09-30 14:09:47 +02:00
|
|
|
|
A unibyte and a multibyte string are equal in the sense of
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@code{string-equal} if and only if they contain the same sequence of
|
2022-09-30 14:09:47 +02:00
|
|
|
|
character codes all being in the range 0--127 (@acronym{ASCII}).
|
|
|
|
|
@xref{Text Representations}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@defun string= string1 string2
|
|
|
|
|
@code{string=} is another name for @code{string-equal}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex case-insensitive string comparison
|
2022-07-26 13:47:03 -04:00
|
|
|
|
@defun string-equal-ignore-case string1 string2
|
|
|
|
|
@code{string-equal-ignore-case} compares strings ignoring case
|
|
|
|
|
differences, like @code{char-equal} when @code{case-fold-search} is
|
|
|
|
|
@code{t}.
|
2022-07-26 20:54:23 +02:00
|
|
|
|
@end defun
|
2022-07-26 13:47:03 -04:00
|
|
|
|
|
2015-11-29 19:52:16 +02:00
|
|
|
|
@cindex locale-dependent string equivalence
|
2014-09-07 13:02:33 +02:00
|
|
|
|
@defun string-collate-equalp string1 string2 &optional locale ignore-case
|
|
|
|
|
This function returns @code{t} if @var{string1} and @var{string2} are
|
2022-11-23 16:54:01 +02:00
|
|
|
|
equal with respect to the collation rules of the specified
|
|
|
|
|
@var{locale}, which defaults to your current system locale. A
|
|
|
|
|
collation rule is not only
|
2014-09-07 13:02:33 +02:00
|
|
|
|
determined by the lexicographic order of the characters contained in
|
2022-11-23 16:54:01 +02:00
|
|
|
|
@var{string1} and @var{string2}, but also by further rules about
|
2014-09-07 13:02:33 +02:00
|
|
|
|
relations between these characters. Usually, it is defined by the
|
2022-11-23 16:54:01 +02:00
|
|
|
|
locale environment with which Emacs is running and by the Standard C
|
2022-07-21 09:53:45 +03:00
|
|
|
|
library against which Emacs was linked@footnote{
|
|
|
|
|
For more information about collation rules and their locale
|
|
|
|
|
dependencies, see @uref{https://unicode.org/reports/tr10/, The Unicode
|
|
|
|
|
Collation Algorithm}. Some Standard C libraries, such as the
|
|
|
|
|
@acronym{GNU} C Library (a.k.a.@: @dfn{glibc}) implement large
|
|
|
|
|
portions of the Unicode Collation Algorithm and use the associated
|
|
|
|
|
locale data, Common Locale Data Repository, or @acronym{CLDR}.
|
|
|
|
|
}.
|
|
|
|
|
|
|
|
|
|
For example, characters with different code points but the same
|
|
|
|
|
meaning, like different grave accent Unicode characters, might, in
|
|
|
|
|
some locales, be considered as equal:
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(string-collate-equalp (string ?\uFF40) (string ?\u1FEF))
|
|
|
|
|
@result{} t
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
The optional argument @var{locale}, a string, overrides the setting of
|
|
|
|
|
your current locale identifier for collation. The value is system
|
2015-09-04 13:31:41 -07:00
|
|
|
|
dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX
|
|
|
|
|
systems, while it would be, e.g., @code{"enu_USA.1252"} on MS-Windows
|
2014-09-07 13:02:33 +02:00
|
|
|
|
systems.
|
|
|
|
|
|
2022-11-23 16:54:01 +02:00
|
|
|
|
If @var{ignore-case} is non-@code{nil}, characters are compared
|
|
|
|
|
case-insensitively, by converting them to lower-case. However, if the
|
|
|
|
|
underlying system library doesn't provide locale-specific collation
|
|
|
|
|
rules, this function falls back to @code{string-equal}, in which case
|
|
|
|
|
the @var{ignore-case} argument is ignored, and the comparison will
|
|
|
|
|
always be case-sensitive.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
2015-11-29 19:52:16 +02:00
|
|
|
|
@vindex w32-collate-ignore-punctuation
|
2014-09-07 13:02:33 +02:00
|
|
|
|
To emulate Unicode-compliant collation on MS-Windows systems,
|
2014-12-24 16:54:55 -08:00
|
|
|
|
bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since
|
2015-09-04 13:31:41 -07:00
|
|
|
|
the codeset part of the locale cannot be @code{"UTF-8"} on MS-Windows.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
If your system does not support a locale environment, this function
|
|
|
|
|
behaves like @code{string-equal}.
|
|
|
|
|
|
2016-07-10 17:34:34 +03:00
|
|
|
|
Do @emph{not} use this function to compare file names for equality, as
|
|
|
|
|
filesystems generally don't honor linguistic equivalence of strings
|
|
|
|
|
that collation implements.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
@end defun
|
|
|
|
|
|
2015-11-29 19:52:16 +02:00
|
|
|
|
@cindex lexical comparison of strings
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@anchor{definition of string-lessp}
|
|
|
|
|
@defun string-lessp string1 string2
|
2007-09-06 04:25:08 +00:00
|
|
|
|
This function compares two strings a character at a time. It
|
|
|
|
|
scans both the strings at the same time to find the first pair of corresponding
|
|
|
|
|
characters that do not match. If the lesser character of these two is
|
|
|
|
|
the character from @var{string1}, then @var{string1} is less, and this
|
|
|
|
|
function returns @code{t}. If the lesser character is the one from
|
|
|
|
|
@var{string2}, then @var{string1} is greater, and this function returns
|
|
|
|
|
@code{nil}. If the two strings match entirely, the value is @code{nil}.
|
|
|
|
|
|
|
|
|
|
Pairs of characters are compared according to their character codes.
|
|
|
|
|
Keep in mind that lower case letters have higher numeric values in the
|
|
|
|
|
@acronym{ASCII} character set than their upper case counterparts; digits and
|
|
|
|
|
many punctuation characters have a lower numeric value than upper case
|
|
|
|
|
letters. An @acronym{ASCII} character is less than any non-@acronym{ASCII}
|
|
|
|
|
character; a unibyte non-@acronym{ASCII} character is always less than any
|
|
|
|
|
multibyte non-@acronym{ASCII} character (@pxref{Text Representations}).
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "abc" "abd")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} t
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "abd" "abc")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "123" "abc")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} t
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
When the strings have different lengths, and they match up to the
|
|
|
|
|
length of @var{string1}, then the result is @code{t}. If they match up
|
|
|
|
|
to the length of @var{string2}, the result is @code{nil}. A string of
|
|
|
|
|
no characters is less than any other string.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "" "abc")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} t
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "ab" "abc")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} t
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "abc" "")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "abc" "ab")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
2024-08-06 18:04:46 +02:00
|
|
|
|
(string-lessp "" "")
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@result{} nil
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
Symbols are also allowed as arguments, in which case their print names
|
2016-01-16 16:03:03 +02:00
|
|
|
|
are compared.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@defun string< string1 string2
|
|
|
|
|
@code{string<} is another name for @code{string-lessp}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2016-01-16 16:03:03 +02:00
|
|
|
|
@defun string-greaterp string1 string2
|
|
|
|
|
This function returns the result of comparing @var{string1} and
|
|
|
|
|
@var{string2} in the opposite order, i.e., it is equivalent to calling
|
|
|
|
|
@code{(string-lessp @var{string2} @var{string1})}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-06 18:04:46 +02:00
|
|
|
|
@defun string> string1 string2
|
|
|
|
|
@code{string>} is another name for @code{string-greaterp}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2015-11-29 19:52:16 +02:00
|
|
|
|
@cindex locale-dependent string comparison
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex string collation
|
2014-09-07 13:02:33 +02:00
|
|
|
|
@defun string-collate-lessp string1 string2 &optional locale ignore-case
|
|
|
|
|
This function returns @code{t} if @var{string1} is less than
|
2022-11-23 16:54:01 +02:00
|
|
|
|
@var{string2} in collation order of the specified @var{locale}, which
|
|
|
|
|
defaults to your current system locale. A collation order is not only
|
2014-09-07 13:02:33 +02:00
|
|
|
|
determined by the lexicographic order of the characters contained in
|
2022-11-23 16:54:01 +02:00
|
|
|
|
@var{string1} and @var{string2}, but also by further rules about
|
2014-09-07 13:02:33 +02:00
|
|
|
|
relations between these characters. Usually, it is defined by the
|
2022-11-23 16:54:01 +02:00
|
|
|
|
locale environment with which Emacs is running, and by the Standard C
|
|
|
|
|
library against which Emacs was linked.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
2015-11-02 11:22:51 -05:00
|
|
|
|
For example, punctuation and whitespace characters might be ignored
|
|
|
|
|
for sorting (@pxref{Sequence Functions}):
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
2024-03-22 15:08:50 +01:00
|
|
|
|
(sort '("11" "12" "1 1" "1 2" "1.1" "1.2")
|
|
|
|
|
:lessp #'string-collate-lessp)
|
2014-09-07 13:02:33 +02:00
|
|
|
|
@result{} ("11" "1 1" "1.1" "12" "1 2" "1.2")
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2015-11-29 19:52:16 +02:00
|
|
|
|
This behavior is system-dependent; e.g., punctuation and whitespace
|
|
|
|
|
are never ignored on Cygwin, regardless of locale.
|
2015-11-02 11:22:51 -05:00
|
|
|
|
|
2014-09-07 13:02:33 +02:00
|
|
|
|
The optional argument @var{locale}, a string, overrides the setting of
|
|
|
|
|
your current locale identifier for collation. The value is system
|
2015-09-04 13:31:41 -07:00
|
|
|
|
dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX
|
|
|
|
|
systems, while it would be, e.g., @code{"enu_USA.1252"} on MS-Windows
|
2015-11-29 19:52:16 +02:00
|
|
|
|
systems. The @var{locale} value of @code{"POSIX"} or @code{"C"} lets
|
|
|
|
|
@code{string-collate-lessp} behave like @code{string-lessp}:
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
2024-03-22 15:08:50 +01:00
|
|
|
|
(sort '("11" "12" "1 1" "1 2" "1.1" "1.2")
|
|
|
|
|
:lessp (lambda (s1 s2) (string-collate-lessp s1 s2 "POSIX")))
|
2014-09-07 13:02:33 +02:00
|
|
|
|
@result{} ("1 1" "1 2" "1.1" "1.2" "11" "12")
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2022-11-23 16:54:01 +02:00
|
|
|
|
If @var{ignore-case} is non-@code{nil}, characters are compared
|
|
|
|
|
case-insensitively, by converting them to lower-case. However, if the
|
|
|
|
|
underlying system library doesn't provide locale-specific collation
|
|
|
|
|
rules, this function falls back to @code{string-lessp}, in which case
|
|
|
|
|
the @var{ignore-case} argument is ignored, and the comparison will
|
|
|
|
|
always be case-sensitive.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
To emulate Unicode-compliant collation on MS-Windows systems,
|
2014-12-24 16:54:55 -08:00
|
|
|
|
bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since
|
2015-09-04 13:31:41 -07:00
|
|
|
|
the codeset part of the locale cannot be @code{"UTF-8"} on MS-Windows.
|
2014-09-07 13:02:33 +02:00
|
|
|
|
|
|
|
|
|
If your system does not support a locale environment, this function
|
|
|
|
|
behaves like @code{string-lessp}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex version comparison
|
|
|
|
|
@cindex comparing version strings
|
2016-02-21 13:25:24 -08:00
|
|
|
|
@defun string-version-lessp string1 string2
|
|
|
|
|
This function compares strings lexicographically, except it treats
|
|
|
|
|
sequences of numerical characters as if they comprised a base-ten
|
|
|
|
|
number, and then compares the numbers. So @samp{foo2.png} is
|
|
|
|
|
``smaller'' than @samp{foo12.png} according to this predicate, even if
|
|
|
|
|
@samp{12} is lexicographically ``smaller'' than @samp{2}.
|
2016-02-21 15:32:45 +11:00
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex string starts with prefix
|
2012-03-21 23:21:28 -07:00
|
|
|
|
@defun string-prefix-p string1 string2 &optional ignore-case
|
|
|
|
|
This function returns non-@code{nil} if @var{string1} is a prefix of
|
|
|
|
|
@var{string2}; i.e., if @var{string2} starts with @var{string1}. If
|
|
|
|
|
the optional argument @var{ignore-case} is non-@code{nil}, the
|
|
|
|
|
comparison ignores case differences.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2024-08-16 14:05:20 +03:00
|
|
|
|
@cindex string ends with suffix
|
2014-01-09 17:54:54 +01:00
|
|
|
|
@defun string-suffix-p suffix string &optional ignore-case
|
|
|
|
|
This function returns non-@code{nil} if @var{suffix} is a suffix of
|
|
|
|
|
@var{string}; i.e., if @var{string} ends with @var{suffix}. If the
|
|
|
|
|
optional argument @var{ignore-case} is non-@code{nil}, the comparison
|
2014-01-09 14:07:33 -05:00
|
|
|
|
ignores case differences.
|
2014-01-09 17:54:54 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
2020-09-25 01:52:10 +02:00
|
|
|
|
@defun string-search needle haystack &optional start-pos
|
|
|
|
|
Return the position of the first instance of @var{needle} in
|
|
|
|
|
@var{haystack}, both of which are strings. If @var{start-pos} is
|
2023-09-07 13:51:12 +02:00
|
|
|
|
non-@code{nil}, start searching from that position in @var{haystack}.
|
2020-09-25 17:00:17 +02:00
|
|
|
|
Return @code{nil} if no match was found.
|
2020-09-25 01:52:10 +02:00
|
|
|
|
This function only considers the characters in the strings when doing
|
2020-09-25 17:00:17 +02:00
|
|
|
|
the comparison; text properties are ignored. Matching is always
|
|
|
|
|
case-sensitive.
|
2020-09-25 01:52:10 +02:00
|
|
|
|
@end defun
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@defun compare-strings string1 start1 end1 string2 start2 end2 &optional ignore-case
|
2012-12-15 21:44:41 +08:00
|
|
|
|
This function compares a specified part of @var{string1} with a
|
2007-09-06 04:25:08 +00:00
|
|
|
|
specified part of @var{string2}. The specified part of @var{string1}
|
2012-12-15 21:44:41 +08:00
|
|
|
|
runs from index @var{start1} (inclusive) up to index @var{end1}
|
|
|
|
|
(exclusive); @code{nil} for @var{start1} means the start of the
|
|
|
|
|
string, while @code{nil} for @var{end1} means the length of the
|
|
|
|
|
string. Likewise, the specified part of @var{string2} runs from index
|
|
|
|
|
@var{start2} up to index @var{end2}.
|
|
|
|
|
|
|
|
|
|
The strings are compared by the numeric values of their characters.
|
2015-09-15 08:46:48 -07:00
|
|
|
|
For instance, @var{str1} is considered less than @var{str2} if
|
2012-12-15 21:44:41 +08:00
|
|
|
|
its first differing character has a smaller numeric value. If
|
|
|
|
|
@var{ignore-case} is non-@code{nil}, characters are converted to
|
2022-07-21 09:53:45 +03:00
|
|
|
|
upper-case, using the current buffer's case-table (@pxref{Case
|
|
|
|
|
Tables}), before comparing them. Unibyte strings are converted to
|
2012-12-15 21:44:41 +08:00
|
|
|
|
multibyte for comparison (@pxref{Text Representations}), so that a
|
|
|
|
|
unibyte string and its conversion to multibyte are always regarded as
|
|
|
|
|
equal.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
If the specified portions of the two strings match, the value is
|
|
|
|
|
@code{t}. Otherwise, the value is an integer which indicates how many
|
2012-12-15 21:44:41 +08:00
|
|
|
|
leading characters agree, and which string is less. Its absolute
|
|
|
|
|
value is one plus the number of characters that agree at the beginning
|
|
|
|
|
of the two strings. The sign is negative if @var{string1} (or its
|
|
|
|
|
specified portion) is less.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
2018-04-28 10:27:53 +03:00
|
|
|
|
@cindex Levenshtein distance
|
|
|
|
|
@cindex distance between strings
|
|
|
|
|
@cindex edit distance between strings
|
|
|
|
|
@defun string-distance string1 string2 &optional bytecompare
|
|
|
|
|
This function returns the @dfn{Levenshtein distance} between the
|
|
|
|
|
source string @var{string1} and the target string @var{string2}. The
|
|
|
|
|
Levenshtein distance is the number of single-character
|
|
|
|
|
changes---deletions, insertions, or replacements---required to
|
|
|
|
|
transform the source string into the target string; it is one possible
|
|
|
|
|
definition of the @dfn{edit distance} between strings.
|
|
|
|
|
|
|
|
|
|
Letter-case of the strings is significant for the computed distance,
|
|
|
|
|
but their text properties are ignored. If the optional argument
|
|
|
|
|
@var{bytecompare} is non-@code{nil}, the function calculates the
|
|
|
|
|
distance in terms of bytes instead of characters. The byte-wise
|
|
|
|
|
comparison uses the internal Emacs representation of characters, so it
|
|
|
|
|
will produce inaccurate results for multibyte strings that include raw
|
|
|
|
|
bytes (@pxref{Text Representations}); make the strings unibyte by
|
|
|
|
|
encoding them (@pxref{Explicit Encoding}) if you need accurate results
|
|
|
|
|
with raw bytes.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@defun assoc-string key alist &optional case-fold
|
|
|
|
|
This function works like @code{assoc}, except that @var{key} must be a
|
|
|
|
|
string or symbol, and comparison is done using @code{compare-strings}.
|
|
|
|
|
Symbols are converted to strings before testing.
|
2016-06-23 18:09:14 +03:00
|
|
|
|
If @var{case-fold} is non-@code{nil}, @var{key} and the elements of
|
|
|
|
|
@var{alist} are converted to upper-case before comparison.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
Unlike @code{assoc}, this function can also match elements of the alist
|
|
|
|
|
that are strings or symbols rather than conses. In particular, @var{alist} can
|
|
|
|
|
be a list of strings or symbols rather than an actual alist.
|
|
|
|
|
@xref{Association Lists}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
See also the function @code{compare-buffer-substrings} in
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@ref{Comparing Text}, for a way to compare text in buffers. The
|
|
|
|
|
function @code{string-match}, which matches a regular expression
|
|
|
|
|
against a string, can be used for a kind of string comparison; see
|
|
|
|
|
@ref{Regexp Search}.
|
|
|
|
|
|
|
|
|
|
@node String Conversion
|
|
|
|
|
@section Conversion of Characters and Strings
|
|
|
|
|
@cindex conversion of strings
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
This section describes functions for converting between characters,
|
|
|
|
|
strings and integers. @code{format} (@pxref{Formatting Strings}) and
|
|
|
|
|
@code{prin1-to-string} (@pxref{Output Functions}) can also convert
|
|
|
|
|
Lisp objects into strings. @code{read-from-string} (@pxref{Input
|
2015-09-15 08:46:48 -07:00
|
|
|
|
Functions}) can convert a string representation of a Lisp object
|
2011-03-16 10:54:21 -04:00
|
|
|
|
into an object. The functions @code{string-to-multibyte} and
|
|
|
|
|
@code{string-to-unibyte} convert the text representation of a string
|
2009-02-22 00:22:46 +00:00
|
|
|
|
(@pxref{Converting Representations}).
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@xref{Documentation}, for functions that produce textual descriptions
|
|
|
|
|
of text characters and general input events
|
|
|
|
|
(@code{single-key-description} and @code{text-char-description}). These
|
|
|
|
|
are used primarily for making help messages.
|
|
|
|
|
|
|
|
|
|
@defun number-to-string number
|
|
|
|
|
@cindex integer to string
|
|
|
|
|
@cindex integer to decimal
|
|
|
|
|
This function returns a string consisting of the printed base-ten
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
representation of @var{number}. The returned value starts with a
|
|
|
|
|
minus sign if the argument is negative.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(number-to-string 256)
|
|
|
|
|
@result{} "256"
|
|
|
|
|
@group
|
|
|
|
|
(number-to-string -23)
|
|
|
|
|
@result{} "-23"
|
|
|
|
|
@end group
|
|
|
|
|
(number-to-string -23.5)
|
|
|
|
|
@result{} "-23.5"
|
|
|
|
|
@end example
|
|
|
|
|
|
2018-02-24 20:52:21 +01:00
|
|
|
|
@cindex @code{int-to-string}
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@code{int-to-string} is a semi-obsolete alias for this function.
|
|
|
|
|
|
|
|
|
|
See also the function @code{format} in @ref{Formatting Strings}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-to-number string &optional base
|
|
|
|
|
@cindex string to number
|
|
|
|
|
This function returns the numeric value of the characters in
|
|
|
|
|
@var{string}. If @var{base} is non-@code{nil}, it must be an integer
|
|
|
|
|
between 2 and 16 (inclusive), and integers are converted in that base.
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
If @var{base} is @code{nil}, then base ten is used. Floating-point
|
2007-09-06 04:25:08 +00:00
|
|
|
|
conversion only works in base ten; we have not implemented other
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
radices for floating-point numbers, because that would be much more
|
2022-05-09 11:57:46 +02:00
|
|
|
|
work and does not seem useful.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
The parsing skips spaces and tabs at the beginning of @var{string},
|
|
|
|
|
then reads as much of @var{string} as it can interpret as a number in
|
|
|
|
|
the given base. (On some systems it ignores other whitespace at the
|
2014-01-04 17:24:41 -08:00
|
|
|
|
beginning, not just spaces and tabs.) If @var{string} cannot be
|
|
|
|
|
interpreted as a number, this function returns 0.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(string-to-number "256")
|
|
|
|
|
@result{} 256
|
|
|
|
|
(string-to-number "25 is a perfect square.")
|
|
|
|
|
@result{} 25
|
|
|
|
|
(string-to-number "X256")
|
|
|
|
|
@result{} 0
|
|
|
|
|
(string-to-number "-4.5")
|
|
|
|
|
@result{} -4.5
|
|
|
|
|
(string-to-number "1e5")
|
|
|
|
|
@result{} 100000.0
|
|
|
|
|
@end example
|
2010-11-21 13:07:47 -05:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun char-to-string character
|
|
|
|
|
@cindex character to string
|
|
|
|
|
This function returns a new string containing one character,
|
|
|
|
|
@var{character}. This function is semi-obsolete because the function
|
|
|
|
|
@code{string} is more general. @xref{Creating Strings}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun string-to-char string
|
2023-01-18 14:28:59 +02:00
|
|
|
|
This function returns the first character in @var{string}. This is
|
|
|
|
|
mostly identical to @w{@code{(aref string 0)}}, except that it returns 0
|
2010-11-21 13:07:47 -05:00
|
|
|
|
if the string is empty. (The value is also 0 when the first character
|
|
|
|
|
of @var{string} is the null character, @acronym{ASCII} code 0.) This
|
|
|
|
|
function may be eliminated in the future if it does not seem useful
|
|
|
|
|
enough to retain.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
Here are some other functions that can convert to or from a string:
|
|
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
|
@item concat
|
2010-11-21 13:07:47 -05:00
|
|
|
|
This function converts a vector or a list into a string.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@xref{Creating Strings}.
|
|
|
|
|
|
|
|
|
|
@item vconcat
|
2010-11-21 13:07:47 -05:00
|
|
|
|
This function converts a string into a vector. @xref{Vector
|
2007-09-06 04:25:08 +00:00
|
|
|
|
Functions}.
|
|
|
|
|
|
|
|
|
|
@item append
|
2010-11-21 13:07:47 -05:00
|
|
|
|
This function converts a string into a list. @xref{Building Lists}.
|
|
|
|
|
|
|
|
|
|
@item byte-to-string
|
|
|
|
|
This function converts a byte of character data into a unibyte string.
|
|
|
|
|
@xref{Converting Representations}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end table
|
|
|
|
|
|
|
|
|
|
@node Formatting Strings
|
|
|
|
|
@section Formatting Strings
|
|
|
|
|
@cindex formatting strings
|
|
|
|
|
@cindex strings, formatting them
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
@dfn{Formatting} means constructing a string by substituting
|
|
|
|
|
computed values at various places in a constant string. This constant
|
|
|
|
|
string controls how the other values are printed, as well as where
|
|
|
|
|
they appear; it is called a @dfn{format string}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
Formatting is often useful for computing messages to be displayed. In
|
|
|
|
|
fact, the functions @code{message} and @code{error} provide the same
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-23 22:38:02 -07:00
|
|
|
|
formatting feature described here; they differ from @code{format-message} only
|
2007-09-06 04:25:08 +00:00
|
|
|
|
in how they use the result of formatting.
|
|
|
|
|
|
|
|
|
|
@defun format string &rest objects
|
2017-10-04 14:29:58 -07:00
|
|
|
|
This function returns a string equal to @var{string}, replacing any format
|
|
|
|
|
specifications with encodings of the corresponding @var{objects}. The
|
2007-09-06 04:25:08 +00:00
|
|
|
|
arguments @var{objects} are the computed values to be formatted.
|
|
|
|
|
|
|
|
|
|
The characters in @var{string}, other than the format specifications,
|
|
|
|
|
are copied directly into the output, including their text properties,
|
2016-06-09 16:52:08 +03:00
|
|
|
|
if any. Any text properties of the format specifications are copied
|
|
|
|
|
to the produced string representations of the argument @var{objects}.
|
2017-10-04 14:29:58 -07:00
|
|
|
|
|
|
|
|
|
The output string need not be newly-allocated. For example, if
|
|
|
|
|
@code{x} is the string @code{"foo"}, the expressions @code{(eq x
|
|
|
|
|
(format x))} and @code{(eq x (format "%s" x))} might both yield
|
|
|
|
|
@code{t}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end defun
|
|
|
|
|
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-23 22:38:02 -07:00
|
|
|
|
@defun format-message string &rest objects
|
2017-09-20 16:40:20 +03:00
|
|
|
|
@cindex curved quotes, in formatted messages
|
|
|
|
|
@cindex curly quotes, in formatted messages
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-23 22:38:02 -07:00
|
|
|
|
This function acts like @code{format}, except it also converts any
|
2016-05-10 07:38:23 -07:00
|
|
|
|
grave accents (@t{`}) and apostrophes (@t{'}) in @var{string} as per the
|
|
|
|
|
value of @code{text-quoting-style}.
|
2016-05-03 08:02:16 -07:00
|
|
|
|
|
2017-09-30 11:08:16 +00:00
|
|
|
|
Typically grave accent and apostrophe in the format translate to
|
|
|
|
|
matching curved quotes, e.g., @t{"Missing `%s'"} might result in
|
|
|
|
|
@t{"Missing ‘foo’"}. @xref{Text Quoting Style}, for how to influence
|
|
|
|
|
or inhibit this translation.
|
More-conservative ‘format’ quote restyling
Instead of restyling curved quotes for every call to ‘format’,
create a new function ‘format-message’ that does the restyling,
and using the new function instead of ‘format’ only in contexts
where this seems appropriate.
Problem reported by Dmitry Gutov and Andreas Schwab in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00826.html
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00827.html
* doc/lispref/commands.texi (Using Interactive):
* doc/lispref/control.texi (Signaling Errors, Signaling Errors):
* doc/lispref/display.texi (Displaying Messages, Progress):
* doc/lispref/elisp.texi:
* doc/lispref/help.texi (Keys in Documentation):
* doc/lispref/minibuf.texi (Minibuffer Misc):
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS:
Document the changes.
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/apropos.el (apropos-library):
* lisp/calc/calc-ext.el (calc-record-message)
(calc-user-function-list):
* lisp/calc/calc-help.el (calc-describe-key, calc-full-help):
* lisp/calc/calc-lang.el (math-read-big-balance):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--add-diary-entry):
* lisp/cedet/mode-local.el (mode-local-print-binding)
(mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-completion-message):
* lisp/cedet/semantic/edit.el (semantic-parse-changes-failed):
* lisp/cedet/semantic/wisent/comp.el (wisent-log):
* lisp/cedet/srecode/insert.el (srecode-insert-show-error-report):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dframe.el (dframe-message):
* lisp/dired-aux.el (dired-query):
* lisp/emacs-lisp/byte-opt.el (byte-compile-log-lap-1):
* lisp/emacs-lisp/bytecomp.el (byte-compile-log)
(byte-compile-log-file, byte-compile-warn, byte-compile-form):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use)
(cconv-analyze-form):
* lisp/emacs-lisp/check-declare.el (check-declare-warn):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emacs-lisp/cl-macs.el (cl-symbol-macrolet):
* lisp/emacs-lisp/edebug.el (edebug-format):
* lisp/emacs-lisp/eieio-core.el (eieio-oref):
* lisp/emacs-lisp/eldoc.el (eldoc-minibuffer-message)
(eldoc-message):
* lisp/emacs-lisp/elint.el (elint-file, elint-log):
* lisp/emacs-lisp/find-func.el (find-function-library):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring):
* lisp/emacs-lisp/package.el (package-compute-transaction)
(package-install-button-action, package-delete-button-action)
(package-menu--list-to-prompt):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emacs-lisp/warnings.el (lwarn, warn):
* lisp/emulation/viper-cmd.el:
(viper-toggle-parse-sexp-ignore-comments)
(viper-kill-buffer, viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/facemenu.el (facemenu-add-new-face):
* lisp/faces.el (face-documentation, read-face-name)
(face-read-string, read-face-font, describe-face):
* lisp/files.el (find-alternate-file, hack-local-variables)
(hack-one-local-variable--obsolete, write-file)
(basic-save-buffer, delete-directory):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--obsolete)
(help-fns--interactive-only, describe-function-1)
(describe-variable):
* lisp/help.el (describe-mode):
* lisp/info-xref.el (info-xref-output):
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
* lisp/international/kkc.el (kkc-error):
* lisp/international/mule-cmds.el:
(select-safe-coding-system-interactively)
(select-safe-coding-system, describe-input-method):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/international/quail.el (quail-error):
* lisp/minibuffer.el (minibuffer-message):
* lisp/mpc.el (mpc--debug):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-message):
* lisp/net/gnutls.el (gnutls-message-maybe):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/nsm.el (nsm-query-user):
* lisp/net/rlogin.el (rlogin):
* lisp/net/soap-client.el (soap-warning):
* lisp/net/tramp.el (tramp-debug-message):
* lisp/nxml/nxml-outln.el (nxml-report-outline-error):
* lisp/nxml/nxml-parse.el (nxml-parse-error):
* lisp/nxml/rng-cmpct.el (rng-c-error):
* lisp/nxml/rng-match.el (rng-compile-error):
* lisp/nxml/rng-uri.el (rng-uri-error):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/org/org-ctags.el:
(org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/proced.el (proced-log):
* lisp/progmodes/ebnf2ps.el (ebnf-log):
* lisp/progmodes/flymake.el (flymake-log):
* lisp/progmodes/vhdl-mode.el (vhdl-warning-when-idle):
* lisp/replace.el (occur-1):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, define-alternatives):
* lisp/startup.el (command-line):
* lisp/subr.el (error, user-error, add-to-list):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Restyle the quotes of format strings intended for use as a
diagnostic, when restyling seems appropriate.
* lisp/subr.el (format-message): New function.
* src/doc.c (Finternal__text_restyle): New function.
(syms_of_doc): Define it.
2015-08-23 22:38:02 -07:00
|
|
|
|
@end defun
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@cindex @samp{%} in format
|
|
|
|
|
@cindex format specification
|
|
|
|
|
A format specification is a sequence of characters beginning with a
|
2015-08-23 13:43:34 +02:00
|
|
|
|
@samp{%}. Thus, if there is a @samp{%d} in @var{string}, the
|
|
|
|
|
@code{format} function replaces it with the printed representation of
|
|
|
|
|
one of the values to be formatted (one of the arguments @var{objects}).
|
2007-09-06 04:25:08 +00:00
|
|
|
|
For example:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(format "The value of fill-column is %d." fill-column)
|
|
|
|
|
@result{} "The value of fill-column is 72."
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2015-08-23 13:43:34 +02:00
|
|
|
|
Since @code{format} interprets @samp{%} characters as format
|
2007-09-06 04:25:08 +00:00
|
|
|
|
specifications, you should @emph{never} pass an arbitrary string as
|
|
|
|
|
the first argument. This is particularly true when the string is
|
|
|
|
|
generated by some Lisp code. Unless the string is @emph{known} to
|
2015-08-23 13:43:34 +02:00
|
|
|
|
never include any @samp{%} characters, pass @code{"%s"}, described
|
2007-09-06 04:25:08 +00:00
|
|
|
|
below, as the first argument, and the string as the second, like this:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(format "%s" @var{arbitrary-string})
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
Certain format specifications require values of particular types. If
|
|
|
|
|
you supply a value that doesn't fit the requirements, an error is
|
|
|
|
|
signaled.
|
|
|
|
|
|
|
|
|
|
Here is a table of valid format specifications:
|
|
|
|
|
|
|
|
|
|
@table @samp
|
|
|
|
|
@item %s
|
|
|
|
|
Replace the specification with the printed representation of the object,
|
|
|
|
|
made without quoting (that is, using @code{princ}, not
|
|
|
|
|
@code{prin1}---@pxref{Output Functions}). Thus, strings are represented
|
|
|
|
|
by their contents alone, with no @samp{"} characters, and symbols appear
|
|
|
|
|
without @samp{\} characters.
|
|
|
|
|
|
|
|
|
|
If the object is a string, its text properties are
|
|
|
|
|
copied into the output. The text properties of the @samp{%s} itself
|
|
|
|
|
are also copied, but those of the object take priority.
|
|
|
|
|
|
|
|
|
|
@item %S
|
|
|
|
|
Replace the specification with the printed representation of the object,
|
|
|
|
|
made with quoting (that is, using @code{prin1}---@pxref{Output
|
|
|
|
|
Functions}). Thus, strings are enclosed in @samp{"} characters, and
|
|
|
|
|
@samp{\} characters appear where necessary before special characters.
|
|
|
|
|
|
|
|
|
|
@item %o
|
|
|
|
|
@cindex integer to octal
|
|
|
|
|
Replace the specification with the base-eight representation of an
|
2018-07-26 00:34:10 -07:00
|
|
|
|
integer. Negative integers are formatted in a platform-dependent
|
2019-07-23 01:42:32 -07:00
|
|
|
|
way. The object can also be a floating-point number that is formatted
|
|
|
|
|
as an integer, dropping any fraction.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %d
|
2017-01-28 10:30:17 +02:00
|
|
|
|
Replace the specification with the base-ten representation of a signed
|
2018-06-25 12:21:40 -07:00
|
|
|
|
integer. The object can also be a floating-point number that is
|
|
|
|
|
formatted as an integer, dropping any fraction.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %x
|
|
|
|
|
@itemx %X
|
|
|
|
|
@cindex integer to hexadecimal
|
|
|
|
|
Replace the specification with the base-sixteen representation of an
|
2018-07-26 00:34:10 -07:00
|
|
|
|
integer. Negative integers are formatted in a platform-dependent
|
|
|
|
|
way. @samp{%x} uses lower case and @samp{%X} uses upper
|
2019-07-23 01:42:32 -07:00
|
|
|
|
case. The object can also be a floating-point number that is
|
|
|
|
|
formatted as an integer, dropping any fraction.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %c
|
|
|
|
|
Replace the specification with the character which is the value given.
|
|
|
|
|
|
|
|
|
|
@item %e
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
Replace the specification with the exponential notation for a
|
|
|
|
|
floating-point number.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %f
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
Replace the specification with the decimal-point notation for a
|
|
|
|
|
floating-point number.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %g
|
Style fixes for floating-point doc.
* commands.texi, customize.texi, display.texi, elisp.texi, files.texi:
* frames.texi, hash.texi, internals.texi, keymaps.texi, lists.texi:
* minibuf.texi, nonascii.texi, numbers.texi, objects.texi, os.texi:
* processes.texi, streams.texi, strings.texi, text.texi:
* variables.texi, windows.texi:
Hyphenate "floating-point" iff it precedes a noun.
Reword to avoid nouns and hyphenation when that's easy.
Prefer "integer" to "integer number" and "is floating point"
to "is a floating point number".
Prefer "@minus{}" to "-" when it's a minus.
2014-03-17 18:19:03 -07:00
|
|
|
|
Replace the specification with notation for a floating-point number,
|
2017-01-28 10:30:17 +02:00
|
|
|
|
using either exponential notation or decimal-point notation. The
|
2018-02-23 11:51:31 -08:00
|
|
|
|
exponential notation is used if the exponent would be less than @minus{}4 or
|
2017-01-28 11:14:28 +02:00
|
|
|
|
greater than or equal to the precision (default: 6). By default,
|
|
|
|
|
trailing zeros are removed from the fractional portion of the result
|
|
|
|
|
and a decimal-point character appears only if it is followed by a
|
|
|
|
|
digit.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@item %%
|
|
|
|
|
Replace the specification with a single @samp{%}. This format
|
2017-06-04 08:39:37 -07:00
|
|
|
|
specification is unusual in that its only form is plain
|
|
|
|
|
@samp{%%} and that it does not use a value. For example,
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@code{(format "%% %d" 30)} returns @code{"% 30"}.
|
|
|
|
|
@end table
|
|
|
|
|
|
2015-08-23 13:43:34 +02:00
|
|
|
|
Any other format character results in an @samp{Invalid format
|
2007-09-06 04:25:08 +00:00
|
|
|
|
operation} error.
|
|
|
|
|
|
format-message now curves ` and '
That way, the caller doesn’t have to use curved quotes to
get diagnostics that match the text-quoting-style preferences.
Suggested by Dmitry Gutov in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00893.html
This means we no longer need %qs, so remove that format.
While we’re at it, fix an unlikely bug and lessen the pressure
on the garbage collector by processing the string once rather
than twice in the usual case.
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS: Document this.
* lisp/subr.el (format-message): Remove; now done in C.
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Use Fformat_message instead of Finternal__text_restyle
followed by Fformat.
* src/doc.c (LSQM, RSQM): Remove; all uses changed to use
uLSQM and uRSQM.
(Fsubstitute_command_keys): Prefer AUTO_STRING to build_string
when pure ASCII now suffices. Fix unlikely bug when parsing
unibyte string containing non-ASCII bytes. Use inline code
rather than memcpy, as it’s a tiny number of bytes.
(Finternal__text_restyle): Remove; no longer used.
(syms_of_doc): Don’t declare it.
* src/editfns.c (Fformat): Rewrite in terms of new function
‘styled_format’.
(Fformat_message): New function, moved here from subr.el.
(styled_format): New function, with the old guts of Fformat,
except it now optionally transliterates quotes, and it transliterates
traditional grave accent and apostrophe quoting as well.
Remove recently-added q flag; no longer needed or used.
(syms_of_editfns): Define format-message.
* src/lisp.h (uLSQM0, uLSQM1, uLSQM2, uRSQM0, uRSQM1, uRSQM2):
Remove; no longer need to be global symbols.
* src/xdisp.c (vadd_to_log): Use Fformat_message, not Fformat,
so that callers can use `%s'.
* src/image.c (image_size_error, xbm_load_image, xbm_load)
(xpm_load, pbm_load, png_load_body, jpeg_load_body, tiff_load)
(gif_load, imagemagick_load_image, imagemagick_load, svg_load)
(svg_load_image, gs_load, x_kill_gs_process):
* src/lread.c (load_warn_old_style_backquotes):
* src/xfaces.c (load_pixmap):
* src/xselect.c (x_clipboard_manager_error_1):
Use `%s' instead of %qs in formats.
2015-08-25 18:41:31 -07:00
|
|
|
|
Here are several examples, which assume the typical
|
|
|
|
|
@code{text-quoting-style} settings:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(format "The octal value of %d is %o,
|
|
|
|
|
and the hex value is %x." 18 18 18)
|
|
|
|
|
@result{} "The octal value of 18 is 22,
|
|
|
|
|
and the hex value is 12."
|
format-message now curves ` and '
That way, the caller doesn’t have to use curved quotes to
get diagnostics that match the text-quoting-style preferences.
Suggested by Dmitry Gutov in:
http://lists.gnu.org/archive/html/emacs-devel/2015-08/msg00893.html
This means we no longer need %qs, so remove that format.
While we’re at it, fix an unlikely bug and lessen the pressure
on the garbage collector by processing the string once rather
than twice in the usual case.
* doc/lispref/strings.texi (Formatting Strings):
* etc/NEWS: Document this.
* lisp/subr.el (format-message): Remove; now done in C.
* src/callint.c (Fcall_interactively):
* src/editfns.c (Fmessage, Fmessage_box):
Use Fformat_message instead of Finternal__text_restyle
followed by Fformat.
* src/doc.c (LSQM, RSQM): Remove; all uses changed to use
uLSQM and uRSQM.
(Fsubstitute_command_keys): Prefer AUTO_STRING to build_string
when pure ASCII now suffices. Fix unlikely bug when parsing
unibyte string containing non-ASCII bytes. Use inline code
rather than memcpy, as it’s a tiny number of bytes.
(Finternal__text_restyle): Remove; no longer used.
(syms_of_doc): Don’t declare it.
* src/editfns.c (Fformat): Rewrite in terms of new function
‘styled_format’.
(Fformat_message): New function, moved here from subr.el.
(styled_format): New function, with the old guts of Fformat,
except it now optionally transliterates quotes, and it transliterates
traditional grave accent and apostrophe quoting as well.
Remove recently-added q flag; no longer needed or used.
(syms_of_editfns): Define format-message.
* src/lisp.h (uLSQM0, uLSQM1, uLSQM2, uRSQM0, uRSQM1, uRSQM2):
Remove; no longer need to be global symbols.
* src/xdisp.c (vadd_to_log): Use Fformat_message, not Fformat,
so that callers can use `%s'.
* src/image.c (image_size_error, xbm_load_image, xbm_load)
(xpm_load, pbm_load, png_load_body, jpeg_load_body, tiff_load)
(gif_load, imagemagick_load_image, imagemagick_load, svg_load)
(svg_load_image, gs_load, x_kill_gs_process):
* src/lread.c (load_warn_old_style_backquotes):
* src/xfaces.c (load_pixmap):
* src/xselect.c (x_clipboard_manager_error_1):
Use `%s' instead of %qs in formats.
2015-08-25 18:41:31 -07:00
|
|
|
|
|
|
|
|
|
(format-message
|
|
|
|
|
"The name of this buffer is ‘%s’." (buffer-name))
|
|
|
|
|
@result{} "The name of this buffer is ‘strings.texi’."
|
|
|
|
|
|
|
|
|
|
(format-message
|
|
|
|
|
"The buffer object prints as `%s'." (current-buffer))
|
|
|
|
|
@result{} "The buffer object prints as ‘strings.texi’."
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2017-05-31 22:09:39 -07:00
|
|
|
|
By default, format specifications correspond to successive values from
|
|
|
|
|
@var{objects}. Thus, the first format specification in @var{string}
|
|
|
|
|
uses the first such value, the second format specification uses the
|
|
|
|
|
second such value, and so on. Any extra format specifications (those
|
|
|
|
|
for which there are no corresponding values) cause an error. Any
|
|
|
|
|
extra values to be formatted are ignored.
|
|
|
|
|
|
2017-06-01 00:09:43 +02:00
|
|
|
|
@cindex field numbers in format spec
|
2017-05-31 22:09:39 -07:00
|
|
|
|
A format specification can have a @dfn{field number}, which is a
|
|
|
|
|
decimal number immediately after the initial @samp{%}, followed by a
|
|
|
|
|
literal dollar sign @samp{$}. It causes the format specification to
|
|
|
|
|
convert the argument with the given number instead of the next
|
2017-06-04 08:39:37 -07:00
|
|
|
|
argument. Field numbers start at 1. A format can contain either
|
|
|
|
|
numbered or unnumbered format specifications but not both, except that
|
|
|
|
|
@samp{%%} can be mixed with numbered specifications.
|
2017-06-01 00:09:43 +02:00
|
|
|
|
|
|
|
|
|
@example
|
2017-06-01 16:03:12 -07:00
|
|
|
|
(format "%2$s, %3$s, %%, %1$s" "x" "y" "z")
|
|
|
|
|
@result{} "y, z, %, x"
|
2008-02-26 18:48:00 +00:00
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@cindex flags in format specifications
|
2017-05-31 22:09:39 -07:00
|
|
|
|
After the @samp{%} and any field number, you can put certain
|
|
|
|
|
@dfn{flag characters}.
|
2008-02-26 18:48:00 +00:00
|
|
|
|
|
2018-07-23 00:05:25 -07:00
|
|
|
|
The flag @samp{+} inserts a plus sign before a nonnegative number, so
|
2008-02-26 18:48:00 +00:00
|
|
|
|
that it always has a sign. A space character as flag inserts a space
|
2018-07-23 00:05:25 -07:00
|
|
|
|
before a nonnegative number. (Otherwise, nonnegative numbers start with the
|
|
|
|
|
first digit.) These flags are useful for ensuring that nonnegative
|
|
|
|
|
and negative numbers use the same number of columns. They are
|
2008-02-26 18:48:00 +00:00
|
|
|
|
ignored except for @samp{%d}, @samp{%e}, @samp{%f}, @samp{%g}, and if
|
|
|
|
|
both flags are used, @samp{+} takes precedence.
|
|
|
|
|
|
2015-09-15 08:46:48 -07:00
|
|
|
|
The flag @samp{#} specifies an alternate form which depends on
|
2008-02-26 18:48:00 +00:00
|
|
|
|
the format in use. For @samp{%o}, it ensures that the result begins
|
2018-07-23 10:23:35 -07:00
|
|
|
|
with a @samp{0}. For @samp{%x} and @samp{%X}, it prefixes nonzero results
|
2017-01-28 10:30:17 +02:00
|
|
|
|
with @samp{0x} or @samp{0X}. For @samp{%e} and @samp{%f}, the
|
|
|
|
|
@samp{#} flag means include a decimal point even if the precision is
|
|
|
|
|
zero. For @samp{%g}, it always includes a decimal point, and also
|
|
|
|
|
forces any trailing zeros after the decimal point to be left in place
|
|
|
|
|
where they would otherwise be removed.
|
2008-02-26 18:48:00 +00:00
|
|
|
|
|
2011-07-03 15:02:43 +02:00
|
|
|
|
The flag @samp{0} ensures that the padding consists of @samp{0}
|
|
|
|
|
characters instead of spaces. This flag is ignored for non-numerical
|
|
|
|
|
specification characters like @samp{%s}, @samp{%S} and @samp{%c}.
|
|
|
|
|
These specification characters accept the @samp{0} flag, but still pad
|
|
|
|
|
with @emph{spaces}.
|
|
|
|
|
|
2017-05-31 22:09:39 -07:00
|
|
|
|
The flag @samp{-} causes any padding inserted by the width,
|
|
|
|
|
if specified, to be inserted on the right rather than the left.
|
2011-07-03 15:02:43 +02:00
|
|
|
|
If both @samp{-} and @samp{0} are present, the @samp{0} flag is
|
|
|
|
|
ignored.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2008-02-26 18:48:00 +00:00
|
|
|
|
@example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@group
|
2008-02-26 18:48:00 +00:00
|
|
|
|
(format "%06d is padded on the left with zeros" 123)
|
|
|
|
|
@result{} "000123 is padded on the left with zeros"
|
|
|
|
|
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 08:41:44 -07:00
|
|
|
|
(format "'%-6d' is padded on the right" 123)
|
|
|
|
|
@result{} "'123 ' is padded on the right"
|
2008-02-26 18:48:00 +00:00
|
|
|
|
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 08:41:44 -07:00
|
|
|
|
(format "The word '%-7s' actually has %d letters in it."
|
2007-09-06 04:25:08 +00:00
|
|
|
|
"foo" (length "foo"))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 08:41:44 -07:00
|
|
|
|
@result{} "The word 'foo ' actually has 3 letters in it."
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@end group
|
2008-02-26 18:48:00 +00:00
|
|
|
|
@end example
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2017-05-31 22:09:39 -07:00
|
|
|
|
@cindex field width
|
|
|
|
|
@cindex padding
|
|
|
|
|
A specification can have a @dfn{width}, which is a decimal number
|
|
|
|
|
that appears after any field number and flags. If the printed
|
|
|
|
|
representation of the object contains fewer characters than this
|
2017-06-04 08:39:37 -07:00
|
|
|
|
width, @code{format} extends it with padding. Any padding introduced by
|
2017-05-31 22:09:39 -07:00
|
|
|
|
the width normally consists of spaces inserted on the left:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(format "%5d is padded on the left with spaces" 123)
|
|
|
|
|
@result{} " 123 is padded on the left with spaces"
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
|
If the width is too small, @code{format} does not truncate the
|
|
|
|
|
object's printed representation. Thus, you can use a width to specify
|
|
|
|
|
a minimum spacing between columns with no risk of losing information.
|
|
|
|
|
In the following two examples, @samp{%7s} specifies a minimum width
|
|
|
|
|
of 7. In the first case, the string inserted in place of @samp{%7s}
|
|
|
|
|
has only 3 letters, and needs 4 blank spaces as padding. In the
|
|
|
|
|
second case, the string @code{"specification"} is 13 letters wide but
|
|
|
|
|
is not truncated.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(format "The word '%7s' has %d letters in it."
|
|
|
|
|
"foo" (length "foo"))
|
|
|
|
|
@result{} "The word ' foo' has 3 letters in it."
|
|
|
|
|
(format "The word '%7s' has %d letters in it."
|
|
|
|
|
"specification" (length "specification"))
|
|
|
|
|
@result{} "The word 'specification' has 13 letters in it."
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@cindex precision in format specifications
|
2015-08-23 13:43:34 +02:00
|
|
|
|
All the specification characters allow an optional @dfn{precision}
|
2017-05-31 22:09:39 -07:00
|
|
|
|
after the field number, flags and width, if present. The precision is
|
2007-09-06 04:25:08 +00:00
|
|
|
|
a decimal-point @samp{.} followed by a digit-string. For the
|
2017-01-28 10:30:17 +02:00
|
|
|
|
floating-point specifications (@samp{%e} and @samp{%f}), the
|
|
|
|
|
precision specifies how many digits following the decimal point to
|
|
|
|
|
show; if zero, the decimal-point itself is also omitted. For
|
|
|
|
|
@samp{%g}, the precision specifies how many significant digits to show
|
|
|
|
|
(significant digits are the first digit before the decimal point and
|
|
|
|
|
all the digits after it). If the precision of %g is zero or
|
|
|
|
|
unspecified, it is treated as 1. For @samp{%s} and @samp{%S}, the
|
|
|
|
|
precision truncates the string to the given width, so @samp{%.3s}
|
2007-09-06 04:25:08 +00:00
|
|
|
|
shows only the first three characters of the representation for
|
2016-08-26 22:13:34 +03:00
|
|
|
|
@var{object}. For other specification characters, the effect of
|
|
|
|
|
precision is what the local library functions of the @code{printf}
|
|
|
|
|
family produce.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2018-07-26 00:34:10 -07:00
|
|
|
|
@cindex formatting numbers for rereading later
|
|
|
|
|
If you plan to use @code{read} later on the formatted string to
|
|
|
|
|
retrieve a copy of the formatted value, use a specification that lets
|
|
|
|
|
@code{read} reconstruct the value. To format numbers in this
|
|
|
|
|
reversible way you can use @samp{%s} and @samp{%S}, to format just
|
|
|
|
|
integers you can also use @samp{%d}, and to format just nonnegative
|
|
|
|
|
integers you can also use @samp{#x%x} and @samp{#o%o}. Other formats
|
|
|
|
|
may be problematic; for example, @samp{%d} and @samp{%g} can mishandle
|
|
|
|
|
NaNs and can lose precision and type, and @samp{#x%x} and @samp{#o%o}
|
|
|
|
|
can mishandle negative integers. @xref{Input Functions}.
|
|
|
|
|
|
2020-05-28 00:53:42 +01:00
|
|
|
|
The functions described in this section accept a fixed set of
|
|
|
|
|
specification characters. The next section describes a function
|
|
|
|
|
@code{format-spec} which can accept custom specification characters,
|
|
|
|
|
such as @samp{%a} or @samp{%z}.
|
|
|
|
|
|
|
|
|
|
@node Custom Format Strings
|
|
|
|
|
@section Custom Format Strings
|
|
|
|
|
@cindex custom format string
|
|
|
|
|
@cindex custom @samp{%}-sequence in format
|
|
|
|
|
|
|
|
|
|
Sometimes it is useful to allow users and Lisp programs alike to
|
|
|
|
|
control how certain text is generated via custom format control
|
|
|
|
|
strings. For example, a format string could control how to display
|
|
|
|
|
someone's forename, surname, and email address. Using the function
|
|
|
|
|
@code{format} described in the previous section, the format string
|
|
|
|
|
could be something like @w{@code{"%s %s <%s>"}}. This approach
|
|
|
|
|
quickly becomes impractical, however, as it can be unclear which
|
|
|
|
|
specification character corresponds to which piece of information.
|
|
|
|
|
|
|
|
|
|
A more convenient format string for such cases would be something like
|
|
|
|
|
@w{@code{"%f %l <%e>"}}, where each specification character carries
|
|
|
|
|
more semantic information and can easily be rearranged relative to
|
|
|
|
|
other specification characters, making such format strings more easily
|
|
|
|
|
customizable by the user.
|
|
|
|
|
|
|
|
|
|
The function @code{format-spec} described in this section performs a
|
|
|
|
|
similar function to @code{format}, except it operates on format
|
|
|
|
|
control strings that use arbitrary specification characters.
|
|
|
|
|
|
2020-12-29 03:04:51 +01:00
|
|
|
|
@defun format-spec template spec-alist &optional ignore-missing split
|
2020-05-28 00:53:42 +01:00
|
|
|
|
This function returns a string produced from the format string
|
|
|
|
|
@var{template} according to conversions specified in @var{spec-alist},
|
|
|
|
|
which is an alist (@pxref{Association Lists}) of the form
|
|
|
|
|
@w{@code{(@var{letter} . @var{replacement})}}. Each specification
|
|
|
|
|
@code{%@var{letter}} in @var{template} will be replaced by
|
|
|
|
|
@var{replacement} when formatting the resulting string.
|
|
|
|
|
|
|
|
|
|
The characters in @var{template}, other than the format
|
|
|
|
|
specifications, are copied directly into the output, including their
|
|
|
|
|
text properties, if any. Any text properties of the format
|
|
|
|
|
specifications are copied to their replacements.
|
|
|
|
|
|
|
|
|
|
Using an alist to specify conversions gives rise to some useful
|
|
|
|
|
properties:
|
|
|
|
|
|
|
|
|
|
@itemize @bullet
|
|
|
|
|
@item
|
|
|
|
|
If @var{spec-alist} contains more unique @var{letter} keys than there
|
|
|
|
|
are unique specification characters in @var{template}, the unused keys
|
|
|
|
|
are simply ignored.
|
|
|
|
|
@item
|
|
|
|
|
If @var{spec-alist} contains more than one association with the same
|
|
|
|
|
@var{letter}, the closest one to the start of the list is used.
|
|
|
|
|
@item
|
|
|
|
|
If @var{template} contains the same specification character more than
|
|
|
|
|
once, then the same @var{replacement} found in @var{spec-alist} is
|
|
|
|
|
used as a basis for all of that character's substitutions.
|
|
|
|
|
@item
|
|
|
|
|
The order of specifications in @var{template} need not correspond to
|
|
|
|
|
the order of associations in @var{spec-alist}.
|
|
|
|
|
@end itemize
|
|
|
|
|
|
2022-09-27 18:16:51 +02:00
|
|
|
|
REPLACEMENT can also be a function taking no arguments, and returning
|
|
|
|
|
a string to be used for the replacement. It will only be called when
|
|
|
|
|
the corresponding LETTER is used in the TEMPLATE. This is useful, for
|
|
|
|
|
example, to avoid prompting for input unless it is needed.
|
|
|
|
|
|
Fix and extend format-spec (bug#41758)
* lisp/format-spec.el: Use lexical-binding. Remove dependence on
subr-x.el.
(format-spec-make): Clarify docstring.
(format-spec--parse-modifiers): Rename to...
(format-spec--parse-flags): ...this and simplify. In particular,
don't bother parsing :space-pad which is redundant and unused.
(format-spec--pad): Remove, replacing with...
(format-spec--do-flags): ...this new helper function which performs
more of format-spec's supported text manipulation.
(format-spec): Autoload. Allow optional argument to take on special
values 'ignore' and 'delete' for more control over what happens when
a replacement for a format specification isn't provided. Bring back
proper support for a precision modifier similar to that of 'format'.
* lisp/battery.el (battery-format): Rewrite in terms of format-spec.
(battery-echo-area-format, battery-mode-line-format): Mention
support of format-spec syntax in docstrings.
* doc/lispref/strings.texi (Custom Format Strings):
* etc/NEWS: Document and announce these changes.
* lisp/dired-aux.el (dired-do-compress-to):
* lisp/erc/erc-match.el (erc-log-matches):
* lisp/erc/erc.el (erc-update-mode-line-buffer):
* lisp/gnus/gnus-sieve.el (gnus-sieve-update):
* lisp/gnus/gssapi.el (open-gssapi-stream):
* lisp/gnus/mail-source.el (mail-source-fetch-file)
(mail-source-fetch-directory, mail-source-fetch-pop)
(mail-source-fetch-imap):
* lisp/gnus/message.el (message-insert-formatted-citation-line):
* lisp/image-dired.el:
* lisp/net/eww.el:
* lisp/net/imap.el (imap-kerberos4-open, imap-gssapi-open)
(imap-shell-open):
* lisp/net/network-stream.el (network-stream-open-shell):
* lisp/obsolete/tls.el (open-tls-stream):
* lisp/textmodes/tex-mode.el:
Remove extraneous loads and autoloads of format-spec now that it is
autoloaded and simplify its uses where possible.
* test/lisp/battery-tests.el (battery-format): Test new format-spec
support.
* test/lisp/format-spec-tests.el (test-format-spec): Rename to...
(format-spec) ...this, extending test cases.
(test-format-unknown): Rename to...
(format-spec-unknown): ...this, extending test cases.
(test-format-modifiers): Rename to...
(format-spec-flags): ...this.
(format-spec-make, format-spec-parse-flags, format-spec-do-flags)
(format-spec-do-flags-truncate, format-spec-do-flags-pad)
(format-spec-do-flags-chop, format-spec-do-flags-case): New tests.
2020-05-29 19:56:14 +01:00
|
|
|
|
The optional argument @var{ignore-missing} indicates how to handle
|
2020-05-28 00:53:42 +01:00
|
|
|
|
specification characters in @var{template} that are not found in
|
|
|
|
|
@var{spec-alist}. If it is @code{nil} or omitted, the function
|
Fix and extend format-spec (bug#41758)
* lisp/format-spec.el: Use lexical-binding. Remove dependence on
subr-x.el.
(format-spec-make): Clarify docstring.
(format-spec--parse-modifiers): Rename to...
(format-spec--parse-flags): ...this and simplify. In particular,
don't bother parsing :space-pad which is redundant and unused.
(format-spec--pad): Remove, replacing with...
(format-spec--do-flags): ...this new helper function which performs
more of format-spec's supported text manipulation.
(format-spec): Autoload. Allow optional argument to take on special
values 'ignore' and 'delete' for more control over what happens when
a replacement for a format specification isn't provided. Bring back
proper support for a precision modifier similar to that of 'format'.
* lisp/battery.el (battery-format): Rewrite in terms of format-spec.
(battery-echo-area-format, battery-mode-line-format): Mention
support of format-spec syntax in docstrings.
* doc/lispref/strings.texi (Custom Format Strings):
* etc/NEWS: Document and announce these changes.
* lisp/dired-aux.el (dired-do-compress-to):
* lisp/erc/erc-match.el (erc-log-matches):
* lisp/erc/erc.el (erc-update-mode-line-buffer):
* lisp/gnus/gnus-sieve.el (gnus-sieve-update):
* lisp/gnus/gssapi.el (open-gssapi-stream):
* lisp/gnus/mail-source.el (mail-source-fetch-file)
(mail-source-fetch-directory, mail-source-fetch-pop)
(mail-source-fetch-imap):
* lisp/gnus/message.el (message-insert-formatted-citation-line):
* lisp/image-dired.el:
* lisp/net/eww.el:
* lisp/net/imap.el (imap-kerberos4-open, imap-gssapi-open)
(imap-shell-open):
* lisp/net/network-stream.el (network-stream-open-shell):
* lisp/obsolete/tls.el (open-tls-stream):
* lisp/textmodes/tex-mode.el:
Remove extraneous loads and autoloads of format-spec now that it is
autoloaded and simplify its uses where possible.
* test/lisp/battery-tests.el (battery-format): Test new format-spec
support.
* test/lisp/format-spec-tests.el (test-format-spec): Rename to...
(format-spec) ...this, extending test cases.
(test-format-unknown): Rename to...
(format-spec-unknown): ...this, extending test cases.
(test-format-modifiers): Rename to...
(format-spec-flags): ...this.
(format-spec-make, format-spec-parse-flags, format-spec-do-flags)
(format-spec-do-flags-truncate, format-spec-do-flags-pad)
(format-spec-do-flags-chop, format-spec-do-flags-case): New tests.
2020-05-29 19:56:14 +01:00
|
|
|
|
signals an error; if it is @code{ignore}, those format specifications
|
|
|
|
|
are left verbatim in the output, including their text properties, if
|
|
|
|
|
any; if it is @code{delete}, those format specifications are removed
|
|
|
|
|
from the output; any other non-@code{nil} value is handled like
|
|
|
|
|
@code{ignore}, but any occurrences of @samp{%%} are also left verbatim
|
|
|
|
|
in the output.
|
2020-12-29 03:04:51 +01:00
|
|
|
|
|
|
|
|
|
If the optional argument @var{split} is non-@code{nil}, instead of
|
|
|
|
|
returning a single string, @code{format-spec} will split the result
|
|
|
|
|
into a list of strings, based on where the substitutions were
|
|
|
|
|
performed. For instance:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(format-spec "foo %b bar" '((?b . "zot")) nil t)
|
|
|
|
|
@result{} ("foo " "zot" " bar")
|
|
|
|
|
@end example
|
2020-05-28 00:53:42 +01:00
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
The syntax of format specifications accepted by @code{format-spec} is
|
|
|
|
|
similar, but not identical, to that accepted by @code{format}. In
|
|
|
|
|
both cases, a format specification is a sequence of characters
|
|
|
|
|
beginning with @samp{%} and ending with an alphabetic letter such as
|
|
|
|
|
@samp{s}.
|
|
|
|
|
|
|
|
|
|
Unlike @code{format}, which assigns specific meanings to a fixed set
|
|
|
|
|
of specification characters, @code{format-spec} accepts arbitrary
|
|
|
|
|
specification characters and treats them all equally. For example:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(setq my-site-info
|
|
|
|
|
(list (cons ?s system-name)
|
|
|
|
|
(cons ?t (symbol-name system-type))
|
|
|
|
|
(cons ?c system-configuration)
|
|
|
|
|
(cons ?v emacs-version)
|
|
|
|
|
(cons ?e invocation-name)
|
|
|
|
|
(cons ?p (number-to-string (emacs-pid)))
|
|
|
|
|
(cons ?a user-mail-address)
|
|
|
|
|
(cons ?n user-full-name)))
|
|
|
|
|
|
|
|
|
|
(format-spec "%e %v (%c)" my-site-info)
|
|
|
|
|
@result{} "emacs 27.1 (x86_64-pc-linux-gnu)"
|
|
|
|
|
|
|
|
|
|
(format-spec "%n <%a>" my-site-info)
|
|
|
|
|
@result{} "Emacs Developers <emacs-devel@@gnu.org>"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
A format specification can include any number of the following flag
|
|
|
|
|
characters immediately after the @samp{%} to modify aspects of the
|
|
|
|
|
substitution.
|
|
|
|
|
|
|
|
|
|
@table @samp
|
|
|
|
|
@item 0
|
|
|
|
|
This flag causes any padding specified by the width to consist of
|
|
|
|
|
@samp{0} characters instead of spaces.
|
|
|
|
|
|
|
|
|
|
@item -
|
|
|
|
|
This flag causes any padding specified by the width to be inserted on
|
|
|
|
|
the right rather than the left.
|
|
|
|
|
|
|
|
|
|
@item <
|
|
|
|
|
This flag causes the substitution to be truncated on the left to the
|
Fix and extend format-spec (bug#41758)
* lisp/format-spec.el: Use lexical-binding. Remove dependence on
subr-x.el.
(format-spec-make): Clarify docstring.
(format-spec--parse-modifiers): Rename to...
(format-spec--parse-flags): ...this and simplify. In particular,
don't bother parsing :space-pad which is redundant and unused.
(format-spec--pad): Remove, replacing with...
(format-spec--do-flags): ...this new helper function which performs
more of format-spec's supported text manipulation.
(format-spec): Autoload. Allow optional argument to take on special
values 'ignore' and 'delete' for more control over what happens when
a replacement for a format specification isn't provided. Bring back
proper support for a precision modifier similar to that of 'format'.
* lisp/battery.el (battery-format): Rewrite in terms of format-spec.
(battery-echo-area-format, battery-mode-line-format): Mention
support of format-spec syntax in docstrings.
* doc/lispref/strings.texi (Custom Format Strings):
* etc/NEWS: Document and announce these changes.
* lisp/dired-aux.el (dired-do-compress-to):
* lisp/erc/erc-match.el (erc-log-matches):
* lisp/erc/erc.el (erc-update-mode-line-buffer):
* lisp/gnus/gnus-sieve.el (gnus-sieve-update):
* lisp/gnus/gssapi.el (open-gssapi-stream):
* lisp/gnus/mail-source.el (mail-source-fetch-file)
(mail-source-fetch-directory, mail-source-fetch-pop)
(mail-source-fetch-imap):
* lisp/gnus/message.el (message-insert-formatted-citation-line):
* lisp/image-dired.el:
* lisp/net/eww.el:
* lisp/net/imap.el (imap-kerberos4-open, imap-gssapi-open)
(imap-shell-open):
* lisp/net/network-stream.el (network-stream-open-shell):
* lisp/obsolete/tls.el (open-tls-stream):
* lisp/textmodes/tex-mode.el:
Remove extraneous loads and autoloads of format-spec now that it is
autoloaded and simplify its uses where possible.
* test/lisp/battery-tests.el (battery-format): Test new format-spec
support.
* test/lisp/format-spec-tests.el (test-format-spec): Rename to...
(format-spec) ...this, extending test cases.
(test-format-unknown): Rename to...
(format-spec-unknown): ...this, extending test cases.
(test-format-modifiers): Rename to...
(format-spec-flags): ...this.
(format-spec-make, format-spec-parse-flags, format-spec-do-flags)
(format-spec-do-flags-truncate, format-spec-do-flags-pad)
(format-spec-do-flags-chop, format-spec-do-flags-case): New tests.
2020-05-29 19:56:14 +01:00
|
|
|
|
given width and precision, if specified.
|
2020-05-28 00:53:42 +01:00
|
|
|
|
|
|
|
|
|
@item >
|
|
|
|
|
This flag causes the substitution to be truncated on the right to the
|
2024-03-17 13:04:32 +01:00
|
|
|
|
given width and precision, if specified.
|
2020-05-28 00:53:42 +01:00
|
|
|
|
|
|
|
|
|
@item ^
|
|
|
|
|
This flag converts the substituted text to upper case (@pxref{Case
|
|
|
|
|
Conversion}).
|
|
|
|
|
|
2022-06-01 17:56:45 +02:00
|
|
|
|
@item _@r{ (underscore)}
|
2020-05-28 00:53:42 +01:00
|
|
|
|
This flag converts the substituted text to lower case (@pxref{Case
|
|
|
|
|
Conversion}).
|
|
|
|
|
@end table
|
|
|
|
|
|
|
|
|
|
The result of using contradictory flags (for instance, both upper and
|
|
|
|
|
lower case) is undefined.
|
|
|
|
|
|
|
|
|
|
As is the case with @code{format}, a format specification can include
|
Fix and extend format-spec (bug#41758)
* lisp/format-spec.el: Use lexical-binding. Remove dependence on
subr-x.el.
(format-spec-make): Clarify docstring.
(format-spec--parse-modifiers): Rename to...
(format-spec--parse-flags): ...this and simplify. In particular,
don't bother parsing :space-pad which is redundant and unused.
(format-spec--pad): Remove, replacing with...
(format-spec--do-flags): ...this new helper function which performs
more of format-spec's supported text manipulation.
(format-spec): Autoload. Allow optional argument to take on special
values 'ignore' and 'delete' for more control over what happens when
a replacement for a format specification isn't provided. Bring back
proper support for a precision modifier similar to that of 'format'.
* lisp/battery.el (battery-format): Rewrite in terms of format-spec.
(battery-echo-area-format, battery-mode-line-format): Mention
support of format-spec syntax in docstrings.
* doc/lispref/strings.texi (Custom Format Strings):
* etc/NEWS: Document and announce these changes.
* lisp/dired-aux.el (dired-do-compress-to):
* lisp/erc/erc-match.el (erc-log-matches):
* lisp/erc/erc.el (erc-update-mode-line-buffer):
* lisp/gnus/gnus-sieve.el (gnus-sieve-update):
* lisp/gnus/gssapi.el (open-gssapi-stream):
* lisp/gnus/mail-source.el (mail-source-fetch-file)
(mail-source-fetch-directory, mail-source-fetch-pop)
(mail-source-fetch-imap):
* lisp/gnus/message.el (message-insert-formatted-citation-line):
* lisp/image-dired.el:
* lisp/net/eww.el:
* lisp/net/imap.el (imap-kerberos4-open, imap-gssapi-open)
(imap-shell-open):
* lisp/net/network-stream.el (network-stream-open-shell):
* lisp/obsolete/tls.el (open-tls-stream):
* lisp/textmodes/tex-mode.el:
Remove extraneous loads and autoloads of format-spec now that it is
autoloaded and simplify its uses where possible.
* test/lisp/battery-tests.el (battery-format): Test new format-spec
support.
* test/lisp/format-spec-tests.el (test-format-spec): Rename to...
(format-spec) ...this, extending test cases.
(test-format-unknown): Rename to...
(format-spec-unknown): ...this, extending test cases.
(test-format-modifiers): Rename to...
(format-spec-flags): ...this.
(format-spec-make, format-spec-parse-flags, format-spec-do-flags)
(format-spec-do-flags-truncate, format-spec-do-flags-pad)
(format-spec-do-flags-chop, format-spec-do-flags-case): New tests.
2020-05-29 19:56:14 +01:00
|
|
|
|
a width, which is a decimal number that appears after any flags, and a
|
|
|
|
|
precision, which is a decimal-point @samp{.} followed by a decimal
|
|
|
|
|
number that appears after any flags and width.
|
|
|
|
|
|
|
|
|
|
If a substitution contains fewer characters than its specified width,
|
|
|
|
|
it is padded on the left:
|
2020-05-28 00:53:42 +01:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(format-spec "%8a is padded on the left with spaces"
|
|
|
|
|
'((?a . "alpha")))
|
|
|
|
|
@result{} " alpha is padded on the left with spaces"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
Fix and extend format-spec (bug#41758)
* lisp/format-spec.el: Use lexical-binding. Remove dependence on
subr-x.el.
(format-spec-make): Clarify docstring.
(format-spec--parse-modifiers): Rename to...
(format-spec--parse-flags): ...this and simplify. In particular,
don't bother parsing :space-pad which is redundant and unused.
(format-spec--pad): Remove, replacing with...
(format-spec--do-flags): ...this new helper function which performs
more of format-spec's supported text manipulation.
(format-spec): Autoload. Allow optional argument to take on special
values 'ignore' and 'delete' for more control over what happens when
a replacement for a format specification isn't provided. Bring back
proper support for a precision modifier similar to that of 'format'.
* lisp/battery.el (battery-format): Rewrite in terms of format-spec.
(battery-echo-area-format, battery-mode-line-format): Mention
support of format-spec syntax in docstrings.
* doc/lispref/strings.texi (Custom Format Strings):
* etc/NEWS: Document and announce these changes.
* lisp/dired-aux.el (dired-do-compress-to):
* lisp/erc/erc-match.el (erc-log-matches):
* lisp/erc/erc.el (erc-update-mode-line-buffer):
* lisp/gnus/gnus-sieve.el (gnus-sieve-update):
* lisp/gnus/gssapi.el (open-gssapi-stream):
* lisp/gnus/mail-source.el (mail-source-fetch-file)
(mail-source-fetch-directory, mail-source-fetch-pop)
(mail-source-fetch-imap):
* lisp/gnus/message.el (message-insert-formatted-citation-line):
* lisp/image-dired.el:
* lisp/net/eww.el:
* lisp/net/imap.el (imap-kerberos4-open, imap-gssapi-open)
(imap-shell-open):
* lisp/net/network-stream.el (network-stream-open-shell):
* lisp/obsolete/tls.el (open-tls-stream):
* lisp/textmodes/tex-mode.el:
Remove extraneous loads and autoloads of format-spec now that it is
autoloaded and simplify its uses where possible.
* test/lisp/battery-tests.el (battery-format): Test new format-spec
support.
* test/lisp/format-spec-tests.el (test-format-spec): Rename to...
(format-spec) ...this, extending test cases.
(test-format-unknown): Rename to...
(format-spec-unknown): ...this, extending test cases.
(test-format-modifiers): Rename to...
(format-spec-flags): ...this.
(format-spec-make, format-spec-parse-flags, format-spec-do-flags)
(format-spec-do-flags-truncate, format-spec-do-flags-pad)
(format-spec-do-flags-chop, format-spec-do-flags-case): New tests.
2020-05-29 19:56:14 +01:00
|
|
|
|
If a substitution contains more characters than its specified
|
|
|
|
|
precision, it is truncated on the right:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(format-spec "%.2a is truncated on the right"
|
|
|
|
|
'((?a . "alpha")))
|
|
|
|
|
@result{} "al is truncated on the right"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
2020-05-28 00:53:42 +01:00
|
|
|
|
Here is a more complicated example that combines several
|
|
|
|
|
aforementioned features:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(setq my-battery-info
|
|
|
|
|
(list (cons ?p "73") ; Percentage
|
|
|
|
|
(cons ?L "Battery") ; Status
|
|
|
|
|
(cons ?t "2:23") ; Remaining time
|
|
|
|
|
(cons ?c "24330") ; Capacity
|
|
|
|
|
(cons ?r "10.6"))) ; Rate of discharge
|
|
|
|
|
|
|
|
|
|
(format-spec "%>^-3L : %3p%% (%05t left)" my-battery-info)
|
|
|
|
|
@result{} "BAT : 73% (02:23 left)"
|
|
|
|
|
|
|
|
|
|
(format-spec "%>^-3L : %3p%% (%05t left)"
|
|
|
|
|
(cons (cons ?L "AC")
|
|
|
|
|
my-battery-info))
|
|
|
|
|
@result{} "AC : 73% (02:23 left)"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
As the examples in this section illustrate, @code{format-spec} is
|
|
|
|
|
often used for selectively formatting an assortment of different
|
|
|
|
|
pieces of information. This is useful in programs that provide
|
|
|
|
|
user-customizable format strings, as the user can choose to format
|
|
|
|
|
with a regular syntax and in any desired order only a subset of the
|
|
|
|
|
information that the program makes available.
|
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@node Case Conversion
|
|
|
|
|
@section Case Conversion in Lisp
|
|
|
|
|
@cindex upper case
|
|
|
|
|
@cindex lower case
|
|
|
|
|
@cindex character case
|
|
|
|
|
@cindex case conversion in Lisp
|
|
|
|
|
|
|
|
|
|
The character case functions change the case of single characters or
|
|
|
|
|
of the contents of strings. The functions normally convert only
|
|
|
|
|
alphabetic characters (the letters @samp{A} through @samp{Z} and
|
|
|
|
|
@samp{a} through @samp{z}, as well as non-@acronym{ASCII} letters); other
|
|
|
|
|
characters are not altered. You can specify a different case
|
|
|
|
|
conversion mapping by specifying a case table (@pxref{Case Tables}).
|
|
|
|
|
|
|
|
|
|
These functions do not modify the strings that are passed to them as
|
|
|
|
|
arguments.
|
|
|
|
|
|
|
|
|
|
The examples below use the characters @samp{X} and @samp{x} which have
|
|
|
|
|
@acronym{ASCII} codes 88 and 120 respectively.
|
|
|
|
|
|
|
|
|
|
@defun downcase string-or-char
|
2009-02-22 00:22:46 +00:00
|
|
|
|
This function converts @var{string-or-char}, which should be either a
|
|
|
|
|
character or a string, to lower case.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
When @var{string-or-char} is a string, this function returns a new
|
|
|
|
|
string in which each letter in the argument that is upper case is
|
|
|
|
|
converted to lower case. When @var{string-or-char} is a character,
|
|
|
|
|
this function returns the corresponding lower case character (an
|
|
|
|
|
integer); if the original character is lower case, or is not a letter,
|
|
|
|
|
the return value is equal to the original character.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(downcase "The cat in the hat")
|
|
|
|
|
@result{} "the cat in the hat"
|
|
|
|
|
|
|
|
|
|
(downcase ?X)
|
|
|
|
|
@result{} 120
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun upcase string-or-char
|
2009-02-22 00:22:46 +00:00
|
|
|
|
This function converts @var{string-or-char}, which should be either a
|
|
|
|
|
character or a string, to upper case.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
When @var{string-or-char} is a string, this function returns a new
|
|
|
|
|
string in which each letter in the argument that is lower case is
|
|
|
|
|
converted to upper case. When @var{string-or-char} is a character,
|
2009-10-04 04:00:46 +00:00
|
|
|
|
this function returns the corresponding upper case character (an
|
2009-02-22 00:22:46 +00:00
|
|
|
|
integer); if the original character is upper case, or is not a letter,
|
|
|
|
|
the return value is equal to the original character.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(upcase "The cat in the hat")
|
|
|
|
|
@result{} "THE CAT IN THE HAT"
|
|
|
|
|
|
|
|
|
|
(upcase ?x)
|
|
|
|
|
@result{} 88
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun capitalize string-or-char
|
|
|
|
|
@cindex capitalization
|
|
|
|
|
This function capitalizes strings or characters. If
|
2009-02-22 00:22:46 +00:00
|
|
|
|
@var{string-or-char} is a string, the function returns a new string
|
|
|
|
|
whose contents are a copy of @var{string-or-char} in which each word
|
|
|
|
|
has been capitalized. This means that the first character of each
|
2007-09-06 04:25:08 +00:00
|
|
|
|
word is converted to upper case, and the rest are converted to lower
|
|
|
|
|
case.
|
|
|
|
|
|
2023-10-29 13:40:27 +02:00
|
|
|
|
@vindex case-symbols-as-words
|
2007-09-06 04:25:08 +00:00
|
|
|
|
The definition of a word is any sequence of consecutive characters that
|
|
|
|
|
are assigned to the word constituent syntax class in the current syntax
|
2023-10-29 13:40:27 +02:00
|
|
|
|
table (@pxref{Syntax Class Table}); if @code{case-symbols-as-words}
|
2024-07-15 18:16:41 +02:00
|
|
|
|
is non-@code{nil}, characters assigned to the symbol constituent syntax
|
2023-10-29 13:40:27 +02:00
|
|
|
|
class are also considered as word constituent.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
When @var{string-or-char} is a character, this function does the same
|
|
|
|
|
thing as @code{upcase}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(capitalize "The cat in the hat")
|
|
|
|
|
@result{} "The Cat In The Hat"
|
|
|
|
|
@end group
|
|
|
|
|
|
|
|
|
|
@group
|
|
|
|
|
(capitalize "THE 77TH-HATTED CAT")
|
|
|
|
|
@result{} "The 77th-Hatted Cat"
|
|
|
|
|
@end group
|
|
|
|
|
|
|
|
|
|
@group
|
|
|
|
|
(capitalize ?x)
|
|
|
|
|
@result{} 88
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun upcase-initials string-or-char
|
|
|
|
|
If @var{string-or-char} is a string, this function capitalizes the
|
|
|
|
|
initials of the words in @var{string-or-char}, without altering any
|
|
|
|
|
letters other than the initials. It returns a new string whose
|
|
|
|
|
contents are a copy of @var{string-or-char}, in which each word has
|
|
|
|
|
had its initial letter converted to upper case.
|
|
|
|
|
|
2023-10-29 13:40:27 +02:00
|
|
|
|
The definition of a word for this function is the same as described
|
|
|
|
|
for @code{capitalize} above, and @code{case-symbols-as-words} has the
|
|
|
|
|
same effect on word constituent characters.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
When the argument to @code{upcase-initials} is a character,
|
|
|
|
|
@code{upcase-initials} has the same result as @code{upcase}.
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(upcase-initials "The CAT in the hAt")
|
|
|
|
|
@result{} "The CAT In The HAt"
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
@end defun
|
|
|
|
|
|
Support casing characters which map into multiple code points (bug#24603)
Implement unconditional special casing rules defined in Unicode standard.
Among other things, they deal with cases when a single code point is
replaced by multiple ones because single character does not exist (e.g.
‘fi’ ligature turning into ‘FL’) or is not commonly used (e.g. ß turning
into SS).
* admin/unidata/SpecialCasing.txt: New data file pulled from Unicode
standard distribution.
* admin/unidata/README: Mention SpecialCasing.txt.
* admin/unidata/unidata-get.el (unidata-gen-table-special-casing,
unidata-gen-table-special-casing--do-load): New functions generating
‘special-uppercase’, ‘special-lowercase’ and ‘special-titlecase’
character Unicode properties built from the SpecialCasing.txt Unicode
data file.
* src/casefiddle.c (struct casing_str_buf): New structure for
representing short strings used to handle one-to-many character
mappings.
(case_character_imlp): New function which can handle one-to-many
character mappings.
(case_character, case_single_character): Wrappers for the above
functions. The former may map one character to multiple (or no)
code points while the latter does what the former used to do (i.e.
handles one-to-one mappings only).
(do_casify_natnum, do_casify_unibyte_string,
do_casify_unibyte_region): Use case_single_character.
(do_casify_multibyte_string, do_casify_multibyte_region): Support new
features of case_character.
* (do_casify_region): Updated to reflact do_casify_multibyte_string
changes.
(casify_word): Handle situation when one character-length of a word
can change affecting where end of the word is.
(upcase, capitalize, upcase-initials): Update documentation to mention
limitations when working on characters.
* test/src/casefiddle-tests.el (casefiddle-tests-char-properties):
Add test cases for the newly introduced character properties.
(casefiddle-tests-casing): Update test cases which are now passing.
* test/lisp/char-fold-tests.el (char-fold--ascii-upcase,
char-fold--ascii-downcase): New functions which behave like old ‘upcase’
and ‘downcase’.
(char-fold--test-match-exactly): Use the new functions. This is needed
because otherwise fi and similar characters are turned into their multi-
-character representation.
* doc/lispref/strings.texi: Describe issue with casing characters versus
strings.
* doc/lispref/nonascii.texi: Describe the new character properties.
2016-10-05 00:06:01 +02:00
|
|
|
|
Note that case conversion is not a one-to-one mapping of codepoints
|
|
|
|
|
and length of the result may differ from length of the argument.
|
|
|
|
|
Furthermore, because passing a character forces return type to be
|
|
|
|
|
a character, functions are unable to perform proper substitution and
|
|
|
|
|
result may differ compared to treating a one-character string. For
|
|
|
|
|
example:
|
|
|
|
|
|
2017-12-23 10:34:42 +02:00
|
|
|
|
@ifnottex
|
Support casing characters which map into multiple code points (bug#24603)
Implement unconditional special casing rules defined in Unicode standard.
Among other things, they deal with cases when a single code point is
replaced by multiple ones because single character does not exist (e.g.
‘fi’ ligature turning into ‘FL’) or is not commonly used (e.g. ß turning
into SS).
* admin/unidata/SpecialCasing.txt: New data file pulled from Unicode
standard distribution.
* admin/unidata/README: Mention SpecialCasing.txt.
* admin/unidata/unidata-get.el (unidata-gen-table-special-casing,
unidata-gen-table-special-casing--do-load): New functions generating
‘special-uppercase’, ‘special-lowercase’ and ‘special-titlecase’
character Unicode properties built from the SpecialCasing.txt Unicode
data file.
* src/casefiddle.c (struct casing_str_buf): New structure for
representing short strings used to handle one-to-many character
mappings.
(case_character_imlp): New function which can handle one-to-many
character mappings.
(case_character, case_single_character): Wrappers for the above
functions. The former may map one character to multiple (or no)
code points while the latter does what the former used to do (i.e.
handles one-to-one mappings only).
(do_casify_natnum, do_casify_unibyte_string,
do_casify_unibyte_region): Use case_single_character.
(do_casify_multibyte_string, do_casify_multibyte_region): Support new
features of case_character.
* (do_casify_region): Updated to reflact do_casify_multibyte_string
changes.
(casify_word): Handle situation when one character-length of a word
can change affecting where end of the word is.
(upcase, capitalize, upcase-initials): Update documentation to mention
limitations when working on characters.
* test/src/casefiddle-tests.el (casefiddle-tests-char-properties):
Add test cases for the newly introduced character properties.
(casefiddle-tests-casing): Update test cases which are now passing.
* test/lisp/char-fold-tests.el (char-fold--ascii-upcase,
char-fold--ascii-downcase): New functions which behave like old ‘upcase’
and ‘downcase’.
(char-fold--test-match-exactly): Use the new functions. This is needed
because otherwise fi and similar characters are turned into their multi-
-character representation.
* doc/lispref/strings.texi: Describe issue with casing characters versus
strings.
* doc/lispref/nonascii.texi: Describe the new character properties.
2016-10-05 00:06:01 +02:00
|
|
|
|
@example
|
|
|
|
|
@group
|
|
|
|
|
(upcase "fi") ; note: single character, ligature "fi"
|
|
|
|
|
@result{} "FI"
|
|
|
|
|
@end group
|
|
|
|
|
@group
|
|
|
|
|
(upcase ?fi)
|
|
|
|
|
@result{} 64257 ; i.e. ?fi
|
|
|
|
|
@end group
|
|
|
|
|
@end example
|
2017-12-23 10:34:42 +02:00
|
|
|
|
@end ifnottex
|
|
|
|
|
@iftex
|
|
|
|
|
@example
|
|
|
|
|
@group
|
2017-12-27 09:55:35 -08:00
|
|
|
|
(upcase "@r{fi}") ; note: single character, ligature "fi"
|
2017-12-23 10:34:42 +02:00
|
|
|
|
@result{} "FI"
|
|
|
|
|
@end group
|
|
|
|
|
@group
|
2017-12-27 09:55:35 -08:00
|
|
|
|
(upcase ?@r{fi})
|
|
|
|
|
@result{} 64257 ; i.e. ?@r{fi}
|
2017-12-23 10:34:42 +02:00
|
|
|
|
@end group
|
|
|
|
|
@end example
|
|
|
|
|
@end iftex
|
Support casing characters which map into multiple code points (bug#24603)
Implement unconditional special casing rules defined in Unicode standard.
Among other things, they deal with cases when a single code point is
replaced by multiple ones because single character does not exist (e.g.
‘fi’ ligature turning into ‘FL’) or is not commonly used (e.g. ß turning
into SS).
* admin/unidata/SpecialCasing.txt: New data file pulled from Unicode
standard distribution.
* admin/unidata/README: Mention SpecialCasing.txt.
* admin/unidata/unidata-get.el (unidata-gen-table-special-casing,
unidata-gen-table-special-casing--do-load): New functions generating
‘special-uppercase’, ‘special-lowercase’ and ‘special-titlecase’
character Unicode properties built from the SpecialCasing.txt Unicode
data file.
* src/casefiddle.c (struct casing_str_buf): New structure for
representing short strings used to handle one-to-many character
mappings.
(case_character_imlp): New function which can handle one-to-many
character mappings.
(case_character, case_single_character): Wrappers for the above
functions. The former may map one character to multiple (or no)
code points while the latter does what the former used to do (i.e.
handles one-to-one mappings only).
(do_casify_natnum, do_casify_unibyte_string,
do_casify_unibyte_region): Use case_single_character.
(do_casify_multibyte_string, do_casify_multibyte_region): Support new
features of case_character.
* (do_casify_region): Updated to reflact do_casify_multibyte_string
changes.
(casify_word): Handle situation when one character-length of a word
can change affecting where end of the word is.
(upcase, capitalize, upcase-initials): Update documentation to mention
limitations when working on characters.
* test/src/casefiddle-tests.el (casefiddle-tests-char-properties):
Add test cases for the newly introduced character properties.
(casefiddle-tests-casing): Update test cases which are now passing.
* test/lisp/char-fold-tests.el (char-fold--ascii-upcase,
char-fold--ascii-downcase): New functions which behave like old ‘upcase’
and ‘downcase’.
(char-fold--test-match-exactly): Use the new functions. This is needed
because otherwise fi and similar characters are turned into their multi-
-character representation.
* doc/lispref/strings.texi: Describe issue with casing characters versus
strings.
* doc/lispref/nonascii.texi: Describe the new character properties.
2016-10-05 00:06:01 +02:00
|
|
|
|
|
|
|
|
|
To avoid this, a character must first be converted into a string,
|
|
|
|
|
using @code{string} function, before being passed to one of the casing
|
|
|
|
|
functions. Of course, no assumptions on the length of the result may
|
|
|
|
|
be made.
|
|
|
|
|
|
2024-11-01 16:39:39 +02:00
|
|
|
|
Other characters can also have special case-conversion rules. They
|
|
|
|
|
all have non-@code{nil} character properties @code{special-uppercase},
|
2024-11-05 12:33:49 +01:00
|
|
|
|
@code{special-lowercase}, or @code{special-titlecase} (@pxref{Character
|
2024-11-01 16:39:39 +02:00
|
|
|
|
Properties}) defined by the Unicode Standard. These properties define
|
|
|
|
|
special case-conversion rules which override the current case table
|
|
|
|
|
(@pxref{Case Tables}).
|
Support casing characters which map into multiple code points (bug#24603)
Implement unconditional special casing rules defined in Unicode standard.
Among other things, they deal with cases when a single code point is
replaced by multiple ones because single character does not exist (e.g.
‘fi’ ligature turning into ‘FL’) or is not commonly used (e.g. ß turning
into SS).
* admin/unidata/SpecialCasing.txt: New data file pulled from Unicode
standard distribution.
* admin/unidata/README: Mention SpecialCasing.txt.
* admin/unidata/unidata-get.el (unidata-gen-table-special-casing,
unidata-gen-table-special-casing--do-load): New functions generating
‘special-uppercase’, ‘special-lowercase’ and ‘special-titlecase’
character Unicode properties built from the SpecialCasing.txt Unicode
data file.
* src/casefiddle.c (struct casing_str_buf): New structure for
representing short strings used to handle one-to-many character
mappings.
(case_character_imlp): New function which can handle one-to-many
character mappings.
(case_character, case_single_character): Wrappers for the above
functions. The former may map one character to multiple (or no)
code points while the latter does what the former used to do (i.e.
handles one-to-one mappings only).
(do_casify_natnum, do_casify_unibyte_string,
do_casify_unibyte_region): Use case_single_character.
(do_casify_multibyte_string, do_casify_multibyte_region): Support new
features of case_character.
* (do_casify_region): Updated to reflact do_casify_multibyte_string
changes.
(casify_word): Handle situation when one character-length of a word
can change affecting where end of the word is.
(upcase, capitalize, upcase-initials): Update documentation to mention
limitations when working on characters.
* test/src/casefiddle-tests.el (casefiddle-tests-char-properties):
Add test cases for the newly introduced character properties.
(casefiddle-tests-casing): Update test cases which are now passing.
* test/lisp/char-fold-tests.el (char-fold--ascii-upcase,
char-fold--ascii-downcase): New functions which behave like old ‘upcase’
and ‘downcase’.
(char-fold--test-match-exactly): Use the new functions. This is needed
because otherwise fi and similar characters are turned into their multi-
-character representation.
* doc/lispref/strings.texi: Describe issue with casing characters versus
strings.
* doc/lispref/nonascii.texi: Describe the new character properties.
2016-10-05 00:06:01 +02:00
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@xref{Text Comparison}, for functions that compare strings; some of
|
|
|
|
|
them ignore case differences, or can optionally ignore case differences.
|
|
|
|
|
|
|
|
|
|
@node Case Tables
|
|
|
|
|
@section The Case Table
|
|
|
|
|
|
|
|
|
|
You can customize case conversion by installing a special @dfn{case
|
|
|
|
|
table}. A case table specifies the mapping between upper case and lower
|
|
|
|
|
case letters. It affects both the case conversion functions for Lisp
|
|
|
|
|
objects (see the previous section) and those that apply to text in the
|
|
|
|
|
buffer (@pxref{Case Changes}). Each buffer has a case table; there is
|
|
|
|
|
also a standard case table which is used to initialize the case table
|
|
|
|
|
of new buffers.
|
|
|
|
|
|
|
|
|
|
A case table is a char-table (@pxref{Char-Tables}) whose subtype is
|
|
|
|
|
@code{case-table}. This char-table maps each character into the
|
|
|
|
|
corresponding lower case character. It has three extra slots, which
|
|
|
|
|
hold related tables:
|
|
|
|
|
|
|
|
|
|
@table @var
|
|
|
|
|
@item upcase
|
|
|
|
|
The upcase table maps each character into the corresponding upper
|
|
|
|
|
case character.
|
|
|
|
|
@item canonicalize
|
|
|
|
|
The canonicalize table maps all of a set of case-related characters
|
|
|
|
|
into a particular member of that set.
|
|
|
|
|
@item equivalences
|
|
|
|
|
The equivalences table maps each one of a set of case-related characters
|
|
|
|
|
into the next character in that set.
|
|
|
|
|
@end table
|
|
|
|
|
|
|
|
|
|
In simple cases, all you need to specify is the mapping to lower-case;
|
|
|
|
|
the three related tables will be calculated automatically from that one.
|
|
|
|
|
|
|
|
|
|
For some languages, upper and lower case letters are not in one-to-one
|
|
|
|
|
correspondence. There may be two different lower case letters with the
|
|
|
|
|
same upper case equivalent. In these cases, you need to specify the
|
|
|
|
|
maps for both lower case and upper case.
|
|
|
|
|
|
2024-11-01 16:39:39 +02:00
|
|
|
|
Some characters have special case-conversion rules defined for them,
|
|
|
|
|
which by default override the current case table. These characters have
|
|
|
|
|
non-@code{nil} character properties @code{special-uppercase},
|
2024-11-05 12:33:49 +01:00
|
|
|
|
@code{special-lowercase}, or @code{special-titlecase} (@pxref{Character
|
2024-11-01 16:39:39 +02:00
|
|
|
|
Properties}) defined by the Unicode Standard. An example is U+00DF
|
|
|
|
|
LATIN SMALL LETTER SHARP S, @ss{}, which by default up-cases to the
|
|
|
|
|
string @code{"SS"}, not to U+1E9E LATIN CAPITAL LETTER SHARP S@. To
|
2024-11-05 12:33:49 +01:00
|
|
|
|
force these characters to follow the case-table conversions, set the
|
2024-11-01 16:39:39 +02:00
|
|
|
|
corresponding Unicode property to @code{nil}:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(upcase "@ss{}")
|
|
|
|
|
=> "SS"
|
|
|
|
|
(put-char-code-property ?@ss{} 'special-uppercase nil)
|
|
|
|
|
(upcase "@ss{}")
|
|
|
|
|
=> "ẞ"
|
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
The extra slot @var{canonicalize} of a case table maps each character to a canonical
|
2007-09-06 04:25:08 +00:00
|
|
|
|
equivalent; any two characters that are related by case-conversion have
|
|
|
|
|
the same canonical equivalent character. For example, since @samp{a}
|
|
|
|
|
and @samp{A} are related by case-conversion, they should have the same
|
|
|
|
|
canonical equivalent character (which should be either @samp{a} for both
|
|
|
|
|
of them, or @samp{A} for both of them).
|
|
|
|
|
|
2024-11-01 16:39:39 +02:00
|
|
|
|
The extra slot @var{equivalences} is a map that cyclically permutes
|
2007-09-06 04:25:08 +00:00
|
|
|
|
each equivalence class (of characters with the same canonical
|
|
|
|
|
equivalent). (For ordinary @acronym{ASCII}, this would map @samp{a} into
|
|
|
|
|
@samp{A} and @samp{A} into @samp{a}, and likewise for each set of
|
|
|
|
|
equivalent characters.)
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
When constructing a case table, you can provide @code{nil} for
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@var{canonicalize}; then Emacs fills in this slot from the lower case
|
|
|
|
|
and upper case mappings. You can also provide @code{nil} for
|
|
|
|
|
@var{equivalences}; then Emacs fills in this slot from
|
|
|
|
|
@var{canonicalize}. In a case table that is actually in use, those
|
2009-02-22 00:22:46 +00:00
|
|
|
|
components are non-@code{nil}. Do not try to specify
|
|
|
|
|
@var{equivalences} without also specifying @var{canonicalize}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
|
|
Here are the functions for working with case tables:
|
|
|
|
|
|
|
|
|
|
@defun case-table-p object
|
|
|
|
|
This predicate returns non-@code{nil} if @var{object} is a valid case
|
|
|
|
|
table.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun set-standard-case-table table
|
|
|
|
|
This function makes @var{table} the standard case table, so that it will
|
|
|
|
|
be used in any buffers created subsequently.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun standard-case-table
|
|
|
|
|
This returns the standard case table.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun current-case-table
|
|
|
|
|
This function returns the current buffer's case table.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun set-case-table table
|
|
|
|
|
This sets the current buffer's case table to @var{table}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defmac with-case-table table body@dots{}
|
|
|
|
|
The @code{with-case-table} macro saves the current case table, makes
|
|
|
|
|
@var{table} the current case table, evaluates the @var{body} forms,
|
|
|
|
|
and finally restores the case table. The return value is the value of
|
|
|
|
|
the last form in @var{body}. The case table is restored even in case
|
|
|
|
|
of an abnormal exit via @code{throw} or error (@pxref{Nonlocal
|
|
|
|
|
Exits}).
|
|
|
|
|
@end defmac
|
|
|
|
|
|
2009-02-22 00:22:46 +00:00
|
|
|
|
Some language environments modify the case conversions of
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@acronym{ASCII} characters; for example, in the Turkish language
|
2015-09-15 08:46:48 -07:00
|
|
|
|
environment, the @acronym{ASCII} capital I is downcased into
|
2024-07-26 14:11:17 +03:00
|
|
|
|
a Turkish dotless i (@samp{@dotless{i}}). This can interfere with code that requires
|
2012-04-10 00:34:53 -07:00
|
|
|
|
ordinary @acronym{ASCII} case conversion, such as implementations of
|
2007-09-06 04:25:08 +00:00
|
|
|
|
@acronym{ASCII}-based network protocols. In that case, use the
|
|
|
|
|
@code{with-case-table} macro with the variable @var{ascii-case-table},
|
|
|
|
|
which stores the unmodified case table for the @acronym{ASCII}
|
|
|
|
|
character set.
|
|
|
|
|
|
|
|
|
|
@defvar ascii-case-table
|
|
|
|
|
The case table for the @acronym{ASCII} character set. This should not be
|
|
|
|
|
modified by any language environment settings.
|
|
|
|
|
@end defvar
|
|
|
|
|
|
|
|
|
|
The following three functions are convenient subroutines for packages
|
|
|
|
|
that define non-@acronym{ASCII} character sets. They modify the specified
|
|
|
|
|
case table @var{case-table}; they also modify the standard syntax table.
|
|
|
|
|
@xref{Syntax Tables}. Normally you would use these functions to change
|
|
|
|
|
the standard case table.
|
|
|
|
|
|
|
|
|
|
@defun set-case-syntax-pair uc lc case-table
|
|
|
|
|
This function specifies a pair of corresponding letters, one upper case
|
|
|
|
|
and one lower case.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun set-case-syntax-delims l r case-table
|
|
|
|
|
This function makes characters @var{l} and @var{r} a matching pair of
|
|
|
|
|
case-invariant delimiters.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@defun set-case-syntax char syntax case-table
|
|
|
|
|
This function makes @var{char} case-invariant, with syntax
|
|
|
|
|
@var{syntax}.
|
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
|
|
@deffn Command describe-buffer-case-table
|
|
|
|
|
This command displays a description of the contents of the current
|
|
|
|
|
buffer's case table.
|
|
|
|
|
@end deffn
|