<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp/textmodes/css-mode.el, branch scratch/api.el</title>
<subtitle>Emacs is the extensible, customizable, self-documenting real-time display editor. 
</subtitle>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/'/>
<entry>
<title>Highlight CSS variable definitions</title>
<updated>2015-10-07T17:19:42+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-10-07T17:19:42+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=3cd29a5d15d22866eb45c7bd4460215cb8902a05'/>
<id>3cd29a5d15d22866eb45c7bd4460215cb8902a05</id>
<content type='text'>
* lisp/textmodes/css-mode.el (css-nmstart-re): Tweak regexp to accept
CSS variables.  (Bug#21638)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/textmodes/css-mode.el (css-nmstart-re): Tweak regexp to accept
CSS variables.  (Bug#21638)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add overflow module to CSS property list</title>
<updated>2015-09-19T14:25:40+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-09-19T14:25:40+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba'/>
<id>d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba</id>
<content type='text'>
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS
Overflow Module Level 3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS
Overflow Module Level 3.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backslash cleanup in Elisp source files</title>
<updated>2015-09-17T23:09:39+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2015-09-17T23:08:20+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=284c470ef752967fcd8bae6a450dc138462b1e49'/>
<id>284c470ef752967fcd8bae6a450dc138462b1e49</id>
<content type='text'>
This patch should not change behavior.  It typically omits backslashes
where they are redundant (e.g., in the string literal "^\$").
In a few places, insert backslashes where they make regular
expressions clearer: e.g., replace "^\*" (equivalent to "^*") with
"^\\*", which has the same effect as a regular expression.
Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs,
and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion with
RCS IDs, as that makes it clearer that the backslash is intended.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch should not change behavior.  It typically omits backslashes
where they are redundant (e.g., in the string literal "^\$").
In a few places, insert backslashes where they make regular
expressions clearer: e.g., replace "^\*" (equivalent to "^*") with
"^\\*", which has the same effect as a regular expression.
Also, use ‘\ %’ instead of ‘\%’ when avoiding confusion with SCCS IDs,
and similarly use ‘\ $’ instead of ‘\$’ when avoiding confusion with
RCS IDs, as that makes it clearer that the backslash is intended.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix indentation rule in css-mode</title>
<updated>2015-08-28T17:36:10+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-08-28T17:36:10+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c6af816affb36d512f806725518e6e5f2353b197'/>
<id>c6af816affb36d512f806725518e6e5f2353b197</id>
<content type='text'>
* lisp/textmodes/css-mode.el (css-smie-rules): Fix indentation of
brackets in presence of pseudo-selectors.  (Bug#21328)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/textmodes/css-mode.el (css-smie-rules): Fix indentation of
brackets in presence of pseudo-selectors.  (Bug#21328)
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle comments inside unquoted URIs in css-mode</title>
<updated>2015-08-22T17:13:10+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-08-22T17:13:10+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=7372c1ab067ba93054fbb042cd13211042b83614'/>
<id>7372c1ab067ba93054fbb042cd13211042b83614</id>
<content type='text'>
* lisp/textmodes/css-mode.el (css--uri-re): New defconst.
(css-syntax-propertize-function): New defconst.
(css--font-lock-keywords): Handle parens around unquoted URIs.
(css-mode): Set `syntax-propertize-function'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/textmodes/css-mode.el (css--uri-re): New defconst.
(css-syntax-propertize-function): New defconst.
(css--font-lock-keywords): Handle parens around unquoted URIs.
(css-mode): Set `syntax-propertize-function'.
</pre>
</div>
</content>
</entry>
<entry>
<title>css-mode.el: Support multi-line comment filling</title>
<updated>2015-04-18T18:25:40+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-04-18T18:25:40+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=1dee790fc1467709bcb2fb651b23b521e9ca71da'/>
<id>1dee790fc1467709bcb2fb651b23b521e9ca71da</id>
<content type='text'>
Fixes: debbugs:20256

* lisp/textmodes/css-mode.el (css-fill-paragraph): Support multi-line
comment filling.
(css-adaptive-fill): New function.
(css-mode): Set `adaptive-fill-function'.
(scss-mode): Set `comment-continue'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: debbugs:20256

* lisp/textmodes/css-mode.el (css-fill-paragraph): Support multi-line
comment filling.
(css-adaptive-fill): New function.
(css-mode): Set `adaptive-fill-function'.
(scss-mode): Set `comment-continue'.
</pre>
</div>
</content>
</entry>
<entry>
<title>css-mode.el: Add "not" pseudo-class</title>
<updated>2015-04-09T19:01:02+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-04-09T18:58:53+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=e597344849b465786fd65286a26a0f90429bbd96'/>
<id>e597344849b465786fd65286a26a0f90429bbd96</id>
<content type='text'>
Fixes: debbugs:20267

* textmodes/css-mode.el (css-pseudo-class-ids): Add "not" to list
of CSS pseudo-classes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: debbugs:20267

* textmodes/css-mode.el (css-pseudo-class-ids): Add "not" to list
of CSS pseudo-classes.
</pre>
</div>
</content>
</entry>
<entry>
<title>css-mode.el (css-smie-rules): Fix indentation after complex selectors</title>
<updated>2015-04-09T14:51:23+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2015-04-09T14:51:23+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=6083965958381b29aa55948670d2b85289b0be6d'/>
<id>6083965958381b29aa55948670d2b85289b0be6d</id>
<content type='text'>
Fixes: debbugs:20282

* lisp/textmodes/css-mode.el (css-smie-rules): Don't get confused by
inner structure of selectors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: debbugs:20282

* lisp/textmodes/css-mode.el (css-smie-rules): Don't get confused by
inner structure of selectors.
</pre>
</div>
</content>
</entry>
<entry>
<title>Derive `css-mode' from `prog-mode'</title>
<updated>2015-03-31T17:55:52+00:00</updated>
<author>
<name>Simen Heggestøyl</name>
</author>
<published>2015-03-31T17:55:52+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f21d9b6e4461719cece6ad4adc85ea84ddc5a4e0'/>
<id>f21d9b6e4461719cece6ad4adc85ea84ddc5a4e0</id>
<content type='text'>
* textmodes/css-mode.el (css-mode): Derive from `prog-mode'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* textmodes/css-mode.el (css-mode): Derive from `prog-mode'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Spelling and wording fixes</title>
<updated>2015-03-18T00:11:14+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2015-03-18T00:09:34+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f9e354ebea34aeb1ef47b13ad77f670c7acb5b13'/>
<id>f9e354ebea34aeb1ef47b13ad77f670c7acb5b13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
