Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
94b562dc
Commit
94b562dc
authored
Jul 08, 2003
by
Martin Stjernholm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A bit more talk about an API change in CC Mode.
parent
7bfc3fdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
etc/NEWS
etc/NEWS
+19
-5
No files found.
etc/NEWS
View file @
94b562dc
...
...
@@ -1094,11 +1094,25 @@ per-mode basis through c-require-final-newline. The default is to set
it to t only in languages that mandate a final newline in source files
(C, C++ and Objective-C).
*** Slight API change for the syntactic context used by lineup functions.
The syntactic context stored in c-syntactic-context has been changed
to allow more information. This might affect custom lineup functions,
but only if they use that variable directly. See its docstring for
more details.
*** Format change for syntactic context elements.
The elements in the syntactic context returned by c-guess-basic-syntax
and stored in c-syntactic-context has been changed somewhat to allow
attaching more information. They are now lists instead of single cons
cells. E.g. a line that previously had the syntactic analysis
((inclass . 11) (topmost-intro . 13))
is now analysed as
((inclass 11) (topmost-intro 13))
In some cases there are more than one position given for a syntactic
symbol.
This change might affect code that call c-guess-basic-syntax directly,
and custom lineup functions if they use c-syntactic-context. However,
the argument given to lineup functions is still a single cons cell
with nil or an integer in the cdr.
*** API changes for derived modes.
There have been extensive changes "under the hood" which can affect
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment