<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pdf-tools.git/lisp/pdf-outline.el, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/'/>
<entry>
<title>Fixes obsolete outline commands in PDF Outline (#265)</title>
<updated>2024-03-14T09:07:42+00:00</updated>
<author>
<name>Ramon Diaz-Uriarte</name>
<email>rdiaz02@users.noreply.github.com</email>
</author>
<published>2024-03-14T09:07:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=f12900eda47f45f0e27fd4e8dfa4962a51671d59'/>
<id>f12900eda47f45f0e27fd4e8dfa4962a51671d59</id>
<content type='text'>
Replace obsolete outline commands with their newer versions
---------

Authored-by: Ramon Diaz-Uriarte (@rdiaz02)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace obsolete outline commands with their newer versions
---------

Authored-by: Ramon Diaz-Uriarte (@rdiaz02)</pre>
</div>
</content>
</entry>
<entry>
<title>Remove bugfix for imenu in Emacs 24.3 and below</title>
<updated>2022-10-10T10:09:23+00:00</updated>
<author>
<name>Vedang Manerikar</name>
<email>ved.manerikar@gmail.com</email>
</author>
<published>2022-10-07T14:12:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=5563ac911466ee8948b76241d22c5c0e384b9ab4'/>
<id>5563ac911466ee8948b76241d22c5c0e384b9ab4</id>
<content type='text'>
This is no longer necessary, since we are dropping support for Emacs
24.3

Relates to: #26
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is no longer necessary, since we are dropping support for Emacs
24.3

Relates to: #26
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor language correction: it's -&gt; its</title>
<updated>2022-01-03T02:34:05+00:00</updated>
<author>
<name>Vedang Manerikar</name>
<email>ved.manerikar@gmail.com</email>
</author>
<published>2022-01-03T02:34:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=5a3a14470db4ab4d7310d7d7a647c9764c48d700'/>
<id>5a3a14470db4ab4d7310d7d7a647c9764c48d700</id>
<content type='text'>
The correct possessive with it is "its", not "it's".

Closes: politza#689
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The correct possessive with it is "its", not "it's".

Closes: politza#689
</pre>
</div>
</content>
</entry>
<entry>
<title>Indentation and code-quality fixes</title>
<updated>2021-12-31T04:16:00+00:00</updated>
<author>
<name>Vedang Manerikar</name>
<email>ved.manerikar@gmail.com</email>
</author>
<published>2021-12-28T17:06:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=c5e6be69086b45af05b2f58f6df23167b6a5da79'/>
<id>c5e6be69086b45af05b2f58f6df23167b6a5da79</id>
<content type='text'>
- Remove :group arguments from `defcustom` declarations
  - `defcustom` picks up `defgroup` names from the same file, so
    specifying the group is not necessary
- Ensure that all function-names are properly quoted using #'
- Add an explicit header-option setting lexical-binding to t
- Ensure that cl-check-type uses `satisfies` for filenames
- Replace all `defadvice` with `advice-add`
- Replace `(list ...)` patterns with `\`(...)` patterns

Fixes: #62
Fixes: #32
Partially Fixes: #24
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove :group arguments from `defcustom` declarations
  - `defcustom` picks up `defgroup` names from the same file, so
    specifying the group is not necessary
- Ensure that all function-names are properly quoted using #'
- Add an explicit header-option setting lexical-binding to t
- Ensure that cl-check-type uses `satisfies` for filenames
- Replace all `defadvice` with `advice-add`
- Replace `(list ...)` patterns with `\`(...)` patterns

Fixes: #62
Fixes: #32
Partially Fixes: #24
</pre>
</div>
</content>
</entry>
<entry>
<title>define-minor-mode: Remove support for obsolete pos arguments</title>
<updated>2021-05-31T16:13:58+00:00</updated>
<author>
<name>Thomas Hisch</name>
<email>thomas.hisch@ims.co.at</email>
</author>
<published>2021-05-31T14:02:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=5f77dae43eb8f71e52e10ba8cf994883f74c3fb7'/>
<id>5f77dae43eb8f71e52e10ba8cf994883f74c3fb7</id>
<content type='text'>
This removes the positial arguemnt triplet from the define-minor-mode
calls, because they are obsolete since Emacs&lt;21. See the following
paragraph in the help section of define-minor-mode.

For backward compatibility with the Emacs&lt;21 calling convention, the
keywords of define-minor-mode can also be preceded by the obsolete
triplet INIT-VALUE LIGHTER KEYMAP.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This removes the positial arguemnt triplet from the define-minor-mode
calls, because they are obsolete since Emacs&lt;21. See the following
paragraph in the help section of define-minor-mode.

For backward compatibility with the Emacs&lt;21 calling convention, the
keywords of define-minor-mode can also be preceded by the obsolete
triplet INIT-VALUE LIGHTER KEYMAP.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option to customize fill-column in pdf outlines</title>
<updated>2021-03-07T06:37:18+00:00</updated>
<author>
<name>Matt Huszagh</name>
<email>huszaghmatt@gmail.com</email>
</author>
<published>2020-08-07T21:33:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=79a56420adbc881006d2e0db93234694989f9879'/>
<id>79a56420adbc881006d2e0db93234694989f9879</id>
<content type='text'>
This commit gives the user the option to disable the action of
`fill-column` (or customize it to whatever they want) in pdf-outline
buffers. This is useful because outlines frequently contain long
lines, and breaking up the lines destroys the formatting and integrity
of the outline.

Closes politza/pdf-tools#602, politza/pdf-tools#593
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit gives the user the option to disable the action of
`fill-column` (or customize it to whatever they want) in pdf-outline
buffers. This is useful because outlines frequently contain long
lines, and breaking up the lines destroys the formatting and integrity
of the outline.

Closes politza/pdf-tools#602, politza/pdf-tools#593
</pre>
</div>
</content>
</entry>
<entry>
<title>Set local values of outline-regexp and outline-level</title>
<updated>2017-11-04T20:43:54+00:00</updated>
<author>
<name>Andreas Politz</name>
<email>politza@hochschule-trier.de</email>
</author>
<published>2017-11-04T20:43:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=2271fa3d17092356da52e9ce59a9ecb80950abdf'/>
<id>2271fa3d17092356da52e9ce59a9ecb80950abdf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence compiler warnings about obsolete functions</title>
<updated>2017-09-08T06:07:04+00:00</updated>
<author>
<name>Andreas Politz</name>
<email>politza@hochschule-trier.de</email>
</author>
<published>2017-09-06T05:46:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=bd0211b67f62a7b073c93681b98922ff8ab647ce'/>
<id>bd0211b67f62a7b073c93681b98922ff8ab647ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes whitespace</title>
<updated>2017-08-20T18:13:50+00:00</updated>
<author>
<name>Andreas Politz</name>
<email>politza@hochschule-trier.de</email>
</author>
<published>2017-08-20T18:13:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=d87c7c533785b94007f15ca73b6a600ec05af4ca'/>
<id>d87c7c533785b94007f15ca73b6a600ec05af4ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Delete trailing whitespace</title>
<updated>2017-03-01T07:12:09+00:00</updated>
<author>
<name>Andreas Politz</name>
<email>politza@hochschule-trier.de</email>
</author>
<published>2017-03-01T07:12:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/pdf-tools.git/commit/?id=7cca03bd2fc534a6b42eafc2afef20099bf83dbf'/>
<id>7cca03bd2fc534a6b42eafc2afef20099bf83dbf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
