branch: externals/javaimp commit d90f37c3525b04954eb9dab3bc0778b5cf04c528 Author: Filipp Gunbin <fgun...@fastmail.fm> Commit: Filipp Gunbin <fgun...@fastmail.fm>
Fix remaining single quotes in docstrings --- javaimp-gradle.el | 6 +++--- javaimp.el | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/javaimp-gradle.el b/javaimp-gradle.el index 365506d211..608beebb26 100644 --- a/javaimp-gradle.el +++ b/javaimp-gradle.el @@ -55,9 +55,9 @@ information." (defun javaimp-gradle--handler () "Parse current buffer into list of project descriptors, each of which is an alist of attributes (NAME . VALUE). Each attribute -occupies one line, and is of the form 'NAME=VALUE'. See file -'gradleTaskBody.inc.kts' for the script which generates such -output. Attribute 'id' signifies the start of another +occupies one line, and is of the form \"NAME=VALUE\". See file +gradleTaskBody.inc.kts for the script which generates such +output. Attribute \"id\" signifies the start of another descriptor." (goto-char (point-min)) (let (alist res sym val) diff --git a/javaimp.el b/javaimp.el index 9891d8f6c6..ec2d0fee75 100644 --- a/javaimp.el +++ b/javaimp.el @@ -387,7 +387,7 @@ Finally, already parsed buffers are processed in parsed-bufs))))))) (defun javaimp--get-current-source-dir () - "Try to determine current root source directory from 'package' + "Try to determine current root source directory from \"package\" directive in the current buffer. If there's no such directive, then just return `default-directory'." (if-let ((package (save-excursion @@ -673,9 +673,9 @@ its jar dependencies, as well as its source dependencies. (javaimp-organize-imports (list (cons classname 'normal)))) (defun javaimp--get-jdk-classes (java-home) - "If 'jmods' subdirectory exists in JAVA-HOME (Java 9+), read all -.jmod files in it. Else, if 'jre/lib' subdirectory exists in -JAVA-HOME (earlier Java versions), read all .jar files in it." + "If \"jmods\" subdirectory exists in JAVA-HOME (Java 9+), read +all .jmod files in it. Else, if \"jre/lib\" subdirectory exists +in JAVA-HOME (earlier Java versions), read all .jar files in it." (let ((dir (file-name-concat java-home "jmods"))) (if (file-directory-p dir) (javaimp--collect-from-files