diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 19:19:39 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 19:19:39 +0700 |
commit | 92edca3ea7a482d59a9086b1cb61413ed8604b67 (patch) | |
tree | d709ab2fd24a563cf626fb5ff354a0972a1dc6a9 /docs/devGuideDB/aspectj-mode.xml | |
parent | 79c272eb9c158a976b7b3313c50759dd87b1b5fd (diff) | |
download | aspectj-92edca3ea7a482d59a9086b1cb61413ed8604b67.tar.gz aspectj-92edca3ea7a482d59a9086b1cb61413ed8604b67.zip |
Remove indentation from <programlisting> blocks in docs
Many dozens (hundreds?) of documentation code blocks were indented to
match the surrounding XML or just arbitrarily. The thing is: Inside
<programlisting> tags, similar to <pre> tags, line feeds and leading
whitespace are being preserved, which looked very awkward in the HTML
documentation. While a few files were mostly correct in this respect,
which shows that it was meant to be like that, many others were not.
This was tedious, stupid work to fix, but it had to be done.
Please note that the documentation was in no way updated content-wise.
This is also overdue, but not my focus here.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/devGuideDB/aspectj-mode.xml')
-rw-r--r-- | docs/devGuideDB/aspectj-mode.xml | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/docs/devGuideDB/aspectj-mode.xml b/docs/devGuideDB/aspectj-mode.xml index b54837964..e2ee862db 100644 --- a/docs/devGuideDB/aspectj-mode.xml +++ b/docs/devGuideDB/aspectj-mode.xml @@ -118,7 +118,7 @@ <entry>M-x aspectj-jump-menu (C-x C-j)</entry> <entry> Display popup menu of advisers, advisees, and inter-type declarations. - Navigate to item by selecting with mouse + Navigate to item by selecting with mouse (see <link linkend="aspectjmodescreenshot2">figure</link> below). </entry> </row> @@ -208,9 +208,10 @@ The files in this package need to be in the load-path and ``required''. For example, for the 1.0 release: <programlisting> - ;; I keep my emacs packages in C:/Emacs - (setq load-path (cons "C:/Emacs/aspectj-emacsMode-1.0" load-path)) - (require 'aspectj-mode)</programlisting> +;; I keep my emacs packages in C:/Emacs +(setq load-path (cons "C:/Emacs/aspectj-emacsMode-1.0" load-path)) +(require 'aspectj-mode) + </programlisting> </para> </listitem> @@ -329,17 +330,17 @@ Error in init file: File error: "Cannot open load file", "aspectj-mode" <listitem> <para><emphasis>Symptom</emphasis>: When trying to get a jump menu, - I get the message "No crosscut elements at point" even though + I get the message "No crosscut elements at point" even though there is a [list] on the same line. </para> <para>The caret (point) is probably on or after the list. - To see the crosscut elements you need to hit the jump menu - on the same line that the annotated elements appear as a list - of items surrounded by '[' and ']' on the same line as the - affected declaration. If the caret is on the same line as the - elements and before the list (i.e. not at the end of the - list of elements) the jump menu should work. + To see the crosscut elements you need to hit the jump menu + on the same line that the annotated elements appear as a list + of items surrounded by '[' and ']' on the same line as the + affected declaration. If the caret is on the same line as the + elements and before the list (i.e. not at the end of the + list of elements) the jump menu should work. </para> </listitem> </itemizedlist> |