* [PATCH] lisp/files.el: Add `file-name-set-extension`
@ 2021-05-25 15:50 Colin Woodbury
2021-05-25 17:48 ` Andreas Schwab
2021-05-25 18:00 ` Basil L. Contovounesios
0 siblings, 2 replies; 22+ messages in thread
From: Colin Woodbury @ 2021-05-25 15:50 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1.1: Type: text/plain, Size: 426 bytes --]
This patch adds a safe way to set a filename's extension. It sanitizes the input so that both these cases do the expected thing:
ELISP> (file-name-set-extension "jack.scss" "css")
"jack.css"
ELISP> (file-name-set-extension "jack.scss" ".css")
"jack.css"
Note that if we're trying to be safe with errors, nils, and empty strings, it's not sufficient to just `(concat (file-name-sans-extension file) "." extension)`.
Cheers!
[-- Attachment #1.2: Type: text/html, Size: 723 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: file-name-set-extension.patch --]
[-- Type: text/x-patch; name="file-name-set-extension.patch", Size: 1050 bytes --]
diff --git a/lisp/files.el b/lisp/files.el
index 62e1702fdf..f8aefa7930 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4889,6 +4889,20 @@ extension, the value is \"\"."
(if period
"")))))
+(defun file-name-set-extension (filename extension)
+ "Change the extension of a FILENAME to EXTENSION.
+Sanitizes the input to consolidate leading/trailing dots.
+
+Returns `nil' if either of the FILENAME or EXTENSION are `nil'
+before sanitizing, or empty afterwards."
+ (when (and filename extension)
+ (let* ((patt "[ \\t\\n\\r.]+") ; Borrowed from `string-trim'.
+ (filename (string-trim-right filename patt))
+ (extension (string-trim-left extension patt)))
+ (unless (or (string-empty-p filename)
+ (string-empty-p extension))
+ (concat (file-name-sans-extension filename) "." extension)))))
+
(defun file-name-base (&optional filename)
"Return the base name of the FILENAME: no directory, no extension."
(declare (advertised-calling-convention (filename) "27.1"))
^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 15:50 [PATCH] lisp/files.el: Add `file-name-set-extension` Colin Woodbury
@ 2021-05-25 17:48 ` Andreas Schwab
2021-05-25 19:42 ` Colin Woodbury
2021-05-25 18:00 ` Basil L. Contovounesios
1 sibling, 1 reply; 22+ messages in thread
From: Andreas Schwab @ 2021-05-25 17:48 UTC (permalink / raw)
To: Colin Woodbury; +Cc: emacs-devel
On Mai 25 2021, Colin Woodbury wrote:
> diff --git a/lisp/files.el b/lisp/files.el
> index 62e1702fdf..f8aefa7930 100644
> --- a/lisp/files.el
> +++ b/lisp/files.el
> @@ -4889,6 +4889,20 @@ extension, the value is \"\"."
> (if period
> "")))))
>
> +(defun file-name-set-extension (filename extension)
> + "Change the extension of a FILENAME to EXTENSION.
> +Sanitizes the input to consolidate leading/trailing dots.
> +
> +Returns `nil' if either of the FILENAME or EXTENSION are `nil'
> +before sanitizing, or empty afterwards."
> + (when (and filename extension)
What is the use-case for nil?
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
"And now for something completely different."
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 17:48 ` Andreas Schwab
@ 2021-05-25 19:42 ` Colin Woodbury
0 siblings, 0 replies; 22+ messages in thread
From: Colin Woodbury @ 2021-05-25 19:42 UTC (permalink / raw)
To: Andreas Schwab; +Cc: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 1144 bytes --]
Hi Andreas,
`nil` seemed more appropriate than returning either an empty string or throwing an error. The intent is to signal a failure in general, as it looks like other related functions in that file do.
On Tue, 25 May 2021, at 10:48, Andreas Schwab wrote:
> On Mai 25 2021, Colin Woodbury wrote:
>
> > diff --git a/lisp/files.el b/lisp/files.el
> > index 62e1702fdf..f8aefa7930 100644
> > --- a/lisp/files.el
> > +++ b/lisp/files.el
> > @@ -4889,6 +4889,20 @@ extension, the value is \"\"."
> > (if period
> > "")))))
> >
> > +(defun file-name-set-extension (filename extension)
> > + "Change the extension of a FILENAME to EXTENSION.
> > +Sanitizes the input to consolidate leading/trailing dots.
> > +
> > +Returns `nil' if either of the FILENAME or EXTENSION are `nil'
> > +before sanitizing, or empty afterwards."
> > + (when (and filename extension)
>
> What is the use-case for nil?
>
> Andreas.
>
> --
> Andreas Schwab, schwab@linux-m68k.org <mailto:schwab%40linux-m68k.org>
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
> "And now for something completely different."
>
[-- Attachment #2: Type: text/html, Size: 1945 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 15:50 [PATCH] lisp/files.el: Add `file-name-set-extension` Colin Woodbury
2021-05-25 17:48 ` Andreas Schwab
@ 2021-05-25 18:00 ` Basil L. Contovounesios
2021-05-25 19:45 ` Colin Woodbury
1 sibling, 1 reply; 22+ messages in thread
From: Basil L. Contovounesios @ 2021-05-25 18:00 UTC (permalink / raw)
To: Colin Woodbury; +Cc: emacs-devel
"Colin Woodbury" <colin@fosskers.ca> writes:
> + (let* ((patt "[ \\t\\n\\r.]+") ; Borrowed from `string-trim'.
Those backslashes need escaping only in string-trim's docstring, not in
the literal regexp string.
Thanks,
--
Basil
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 18:00 ` Basil L. Contovounesios
@ 2021-05-25 19:45 ` Colin Woodbury
2021-05-25 20:25 ` Stefan Monnier
0 siblings, 1 reply; 22+ messages in thread
From: Colin Woodbury @ 2021-05-25 19:45 UTC (permalink / raw)
To: Basil L. Contovounesios; +Cc: emacs-devel
[-- Attachment #1.1: Type: text/plain, Size: 492 bytes --]
Thank you, you're right. I've tested the old and revised code, and the double backslash wasn't neccesary.
I've attached the revised patch.
On Tue, 25 May 2021, at 11:00, Basil L. Contovounesios wrote:
> "Colin Woodbury" <colin@fosskers.ca <mailto:colin%40fosskers.ca>> writes:
>
> > + (let* ((patt "[ \\t\\n\\r.]+") ; Borrowed from `string-trim'.
>
> Those backslashes need escaping only in string-trim's docstring, not in
> the literal regexp string.
>
> Thanks,
>
> --
> Basil
>
[-- Attachment #1.2: Type: text/html, Size: 954 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: file-name-set-extension.patch --]
[-- Type: text/x-patch; name="file-name-set-extension.patch", Size: 1045 bytes --]
diff --git a/lisp/files.el b/lisp/files.el
index 62e1702fdf..18a54b3ec7 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4889,6 +4889,20 @@ extension, the value is \"\"."
(if period
"")))))
+(defun file-name-set-extension (filename extension)
+ "Change the extension of a FILENAME to EXTENSION.
+Sanitizes the input to consolidate leading/trailing dots.
+
+Returns `nil' if either of the FILENAME or EXTENSION are `nil'
+before sanitizing, or empty afterwards."
+ (when (and filename extension)
+ (let* ((patt "[ \t\n\r.]+") ; Inspired by `string-trim'.
+ (filename (string-trim-right filename patt))
+ (extension (string-trim-left extension patt)))
+ (unless (or (string-empty-p filename)
+ (string-empty-p extension))
+ (concat (file-name-sans-extension filename) "." extension)))))
+
(defun file-name-base (&optional filename)
"Return the base name of the FILENAME: no directory, no extension."
(declare (advertised-calling-convention (filename) "27.1"))
^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 19:45 ` Colin Woodbury
@ 2021-05-25 20:25 ` Stefan Monnier
2021-05-25 21:21 ` Colin Woodbury
0 siblings, 1 reply; 22+ messages in thread
From: Stefan Monnier @ 2021-05-25 20:25 UTC (permalink / raw)
To: Colin Woodbury; +Cc: Basil L. Contovounesios, emacs-devel
> + (when (and filename extension)
> + (let* ((patt "[ \t\n\r.]+") ; Inspired by `string-trim'.
> + (filename (string-trim-right filename patt))
> + (extension (string-trim-left extension patt)))
> + (unless (or (string-empty-p filename)
> + (string-empty-p extension))
> + (concat (file-name-sans-extension filename) "." extension)))))
Why do you trim [ \t\n\r.]+ from the end of the filename and the
beginning of the extension?
I can see why you'd want to remove a single "." at the beginning of
`extension`, so as to allow extension to come with or without a leading
".", but the rest seems rather surprising because such characters in my
experience almost never show up in such a circumstance (which means
that if they do, it's either on purpose and we should preserve it, or
it's an error "upstream" and we should try and help expose the error
rather than silently try to cover it).
Stefan
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 20:25 ` Stefan Monnier
@ 2021-05-25 21:21 ` Colin Woodbury
2021-05-25 21:29 ` Stefan Monnier
0 siblings, 1 reply; 22+ messages in thread
From: Colin Woodbury @ 2021-05-25 21:21 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Basil L. Contovounesios, emacs-devel
[-- Attachment #1: Type: text/plain, Size: 2012 bytes --]
That regex was borrowed directly from `string-trim`, to which I added a `.`. You're right that the main motivation was to allow the caller to pass either `.foo` or `foo` as the extension and have either case work (many languages do this). Leaving the other characters in the regex seemed like a sanitary thing to do, just in case they pass something bogus. Although as the code is, there's nothing preventing them from still giving bogus characters before the file, or after the extension, making the resulting filepath still meaningless.
So we could consider:
1. Simplifying the regex to just include dots (and perhaps whitespace) (i.e. trust the caller), or;
2. Expanding the logic to sanitize both ends of both arguments, (i.e. don't trust the caller), or;
3. Adding error-throwing logic if malformed files or extensions are given (i.e. warn the user).
I'm happy to alter the patch for any of those scenarios, whichever is preferable. Thanks!
On Tue, 25 May 2021, at 13:25, Stefan Monnier wrote:
> > + (when (and filename extension)
> > + (let* ((patt "[ \t\n\r.]+") ; Inspired by `string-trim'.
> > + (filename (string-trim-right filename patt))
> > + (extension (string-trim-left extension patt)))
> > + (unless (or (string-empty-p filename)
> > + (string-empty-p extension))
> > + (concat (file-name-sans-extension filename) "." extension)))))
>
> Why do you trim [ \t\n\r.]+ from the end of the filename and the
> beginning of the extension?
>
> I can see why you'd want to remove a single "." at the beginning of
> `extension`, so as to allow extension to come with or without a leading
> ".", but the rest seems rather surprising because such characters in my
> experience almost never show up in such a circumstance (which means
> that if they do, it's either on purpose and we should preserve it, or
> it's an error "upstream" and we should try and help expose the error
> rather than silently try to cover it).
>
>
> Stefan
>
>
[-- Attachment #2: Type: text/html, Size: 2968 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 21:21 ` Colin Woodbury
@ 2021-05-25 21:29 ` Stefan Monnier
2021-05-25 21:44 ` Colin Woodbury
0 siblings, 1 reply; 22+ messages in thread
From: Stefan Monnier @ 2021-05-25 21:29 UTC (permalink / raw)
To: Colin Woodbury; +Cc: Basil L. Contovounesios, emacs-devel
> That regex was borrowed directly from `string-trim`, to which I added
> a `.`. You're right that the main motivation was to allow the caller to pass
> either `.foo` or `foo` as the extension and have either case work (many
> languages do this). Leaving the other characters in the regex seemed like
> a sanitary thing to do, just in case they pass something bogus.
File names can be used in different ways for different purposes.
We don't have any good reason to think that a space or a newline at the
end of a file name (or beginning of an extension) is "bogus".
If such things occurred somewhat often and always in ways where they are
indeed undesirable, we could consider removing them (the tradeoff
between occasional harm and frequent error-avoidance would be
favorable), but here this is just asking for trouble with no benefit.
> 1. Simplifying the regex to just include dots (and perhaps whitespace) (i.e. trust the caller), or;
Please do that.
> 2. Expanding the logic to sanitize both ends of both arguments, (i.e. don't trust the caller), or;
I don't think we have any reason to think we should "sanitize" it.
> 3. Adding error-throwing logic if malformed files or extensions are given (i.e. warn the user).
"Malformed" according to which standard?
Stefan
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 21:29 ` Stefan Monnier
@ 2021-05-25 21:44 ` Colin Woodbury
2021-05-26 7:34 ` Andreas Schwab
0 siblings, 1 reply; 22+ messages in thread
From: Colin Woodbury @ 2021-05-25 21:44 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Basil L. Contovounesios, emacs-devel
[-- Attachment #1.1: Type: text/plain, Size: 1534 bytes --]
Thanks Stefan, I've revised the patch according to your suggestions (see attached). I also revised the docstring.
Thanks!
Colin
On Tue, 25 May 2021, at 14:29, Stefan Monnier wrote:
> > That regex was borrowed directly from `string-trim`, to which I added
> > a `.`. You're right that the main motivation was to allow the caller to pass
> > either `.foo` or `foo` as the extension and have either case work (many
> > languages do this). Leaving the other characters in the regex seemed like
> > a sanitary thing to do, just in case they pass something bogus.
>
> File names can be used in different ways for different purposes.
> We don't have any good reason to think that a space or a newline at the
> end of a file name (or beginning of an extension) is "bogus".
>
> If such things occurred somewhat often and always in ways where they are
> indeed undesirable, we could consider removing them (the tradeoff
> between occasional harm and frequent error-avoidance would be
> favorable), but here this is just asking for trouble with no benefit.
>
> > 1. Simplifying the regex to just include dots (and perhaps whitespace) (i.e. trust the caller), or;
>
> Please do that.
>
> > 2. Expanding the logic to sanitize both ends of both arguments, (i.e. don't trust the caller), or;
>
> I don't think we have any reason to think we should "sanitize" it.
>
> > 3. Adding error-throwing logic if malformed files or extensions are given (i.e. warn the user).
>
> "Malformed" according to which standard?
>
>
> Stefan
>
>
[-- Attachment #1.2: Type: text/html, Size: 2254 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: file-name-set-extension.patch --]
[-- Type: text/x-patch; name="file-name-set-extension.patch", Size: 1050 bytes --]
diff --git a/lisp/files.el b/lisp/files.el
index 62e1702fdf..ab8be6ad9e 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4889,6 +4889,21 @@ extension, the value is \"\"."
(if period
"")))))
+(defun file-name-set-extension (filename extension)
+ "Set the extension of a FILENAME to EXTENSION.
+Consolidates leading/trailing dots so that either `foo' or `.foo'
+can be passed as an EXTENSION.
+
+Returns nil if either of the FILENAME or EXTENSION are nil before
+dot consolidation, or empty afterwards."
+ (when (and filename extension)
+ (let* ((patt "[ .]+")
+ (filename (string-trim-right filename patt))
+ (extension (string-trim-left extension patt)))
+ (unless (or (string-empty-p filename)
+ (string-empty-p extension))
+ (concat (file-name-sans-extension filename) "." extension)))))
+
(defun file-name-base (&optional filename)
"Return the base name of the FILENAME: no directory, no extension."
(declare (advertised-calling-convention (filename) "27.1"))
^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-25 21:44 ` Colin Woodbury
@ 2021-05-26 7:34 ` Andreas Schwab
2021-05-26 16:31 ` Colin Woodbury
0 siblings, 1 reply; 22+ messages in thread
From: Andreas Schwab @ 2021-05-26 7:34 UTC (permalink / raw)
To: Colin Woodbury; +Cc: Basil L. Contovounesios, Stefan Monnier, emacs-devel
On Mai 25 2021, Colin Woodbury wrote:
> +Returns nil if either of the FILENAME or EXTENSION are nil before
> +dot consolidation, or empty afterwards."
> + (when (and filename extension)
I still don't see any reason to allow nil. A file name is always a
string.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
"And now for something completely different."
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-26 7:34 ` Andreas Schwab
@ 2021-05-26 16:31 ` Colin Woodbury
2021-05-26 17:39 ` Andreas Schwab
0 siblings, 1 reply; 22+ messages in thread
From: Colin Woodbury @ 2021-05-26 16:31 UTC (permalink / raw)
To: Andreas Schwab; +Cc: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 1479 bytes --]
Hi Andreas,
In this particular case, the `string-trim-*` family of functions panic with the rather unhelpful `Wrong type argument: stringp, nil` message when passed `nil`, so the initial `when` is guarding against that. Since `nil` exists as a "bottom" value to every type in Elisp (not unlike C's null pointers), we adopt the C approach of "don't trust what we're given, and expect the user to check what they're returned". Such scenarios are precisely what macros like `when-let` are for, as far as I can tell.
In general this approach is founded upon the ideas that:
1. `nil` is a good general signal for logical failure (for languages that lack generics, etc.).
2. Library code shouldn't crash/panic (but user code should feel free to).
3. It's okay to return `nil` if the docstrings are clear about when that happens.
Please let me know if I've overlooked something, I'm happy to revise the patch.
Cheers,
Colin
On Wed, 26 May 2021, at 00:34, Andreas Schwab wrote:
> On Mai 25 2021, Colin Woodbury wrote:
>
> > +Returns nil if either of the FILENAME or EXTENSION are nil before
> > +dot consolidation, or empty afterwards."
> > + (when (and filename extension)
>
> I still don't see any reason to allow nil. A file name is always a
> string.
>
> Andreas.
>
> --
> Andreas Schwab, schwab@linux-m68k.org <mailto:schwab%40linux-m68k.org>
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
> "And now for something completely different."
>
[-- Attachment #2: Type: text/html, Size: 2146 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-26 16:31 ` Colin Woodbury
@ 2021-05-26 17:39 ` Andreas Schwab
2021-05-31 1:16 ` Colin Woodbury
0 siblings, 1 reply; 22+ messages in thread
From: Andreas Schwab @ 2021-05-26 17:39 UTC (permalink / raw)
To: Colin Woodbury; +Cc: emacs-devel
That's exactly what should happen.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
"And now for something completely different."
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-26 17:39 ` Andreas Schwab
@ 2021-05-31 1:16 ` Colin Woodbury
2021-06-04 13:08 ` Philipp
0 siblings, 1 reply; 22+ messages in thread
From: Colin Woodbury @ 2021-05-31 1:16 UTC (permalink / raw)
To: Andreas Schwab; +Cc: emacs-devel
[-- Attachment #1.1: Type: text/plain, Size: 640 bytes --]
Hi Andreas (et al.),
After asking around, it seems like letting `string-trim` fail naturally is indeed the canonical thing to do here, especially since with `toggle-debug-on-error` we're able to get the full call-stack if we need it. I've altered the patch (see attached) accordingly. Thanks for your patience.
Cheers,
Colin
On Wed, 26 May 2021, at 10:39, Andreas Schwab wrote:
> That's exactly what should happen.
>
> Andreas.
>
> --
> Andreas Schwab, schwab@linux-m68k.org <mailto:schwab%40linux-m68k.org>
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
> "And now for something completely different."
>
[-- Attachment #1.2: Type: text/html, Size: 1092 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: file-name-set-extension.patch --]
[-- Type: text/x-patch; name="file-name-set-extension.patch", Size: 789 bytes --]
diff --git a/lisp/files.el b/lisp/files.el
index 62e1702fdf..eed818e2fa 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4889,6 +4889,15 @@ extension, the value is \"\"."
(if period
"")))))
+(defun file-name-set-extension (filename extension)
+ "Set the EXTENSION of a FILENAME.
+Consolidates leading/trailing dots so that either `foo' or `.foo'
+can be passed as an EXTENSION."
+ (let* ((patt "[ .]+")
+ (filename (string-trim-right filename patt))
+ (extension (string-trim-left extension patt)))
+ (concat (file-name-sans-extension filename) "." extension)))
+
(defun file-name-base (&optional filename)
"Return the base name of the FILENAME: no directory, no extension."
(declare (advertised-calling-convention (filename) "27.1"))
^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH] lisp/files.el: Add `file-name-set-extension`
2021-05-31 1:16 ` Colin Woodbury
@ 2021-06-04 13:08 ` Philipp
[not found] ` <26B660D9-AC76-4AFC-9FFD-2F5D4DCA16C1@acm.org>
0 siblings, 1 reply; 22+ messages in thread
From: Philipp @ 2021-06-04 13:08 UTC (permalink / raw)
To: Colin Woodbury; +Cc: Andreas Schwab, emacs-devel
> Am 31.05.2021 um 03:16 schrieb Colin Woodbury <colin@fosskers.ca>:
>
> Hi Andreas (et al.),
>
> After asking around, it seems like letting `string-trim` fail naturally is indeed the canonical thing to do here, especially since with `toggle-debug-on-error` we're able to get the full call-stack if we need it. I've altered the patch (see attached) accordingly. Thanks for your patience.
>
> Cheers,
> Colin
>
> On Wed, 26 May 2021, at 10:39, Andreas Schwab wrote:
>> That's exactly what should happen.
>>
>> Andreas.
>>
>> --
>> Andreas Schwab, schwab@linux-m68k.org
>> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1
>> "And now for something completely different."
>>
>
> <file-name-set-extension.patch>
Some general comments:
- Please add unit tests, especially testing corner cases such as empty strings, directory names, filenames starting with a dot, etc.
- I'd rename the function to something that doesn't contain "set". "set" gives the impression that the function modifies the filename in place, which it doesn't do. Likewise, change the docstring to clarify that a new string is returned.
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2021-06-19 9:16 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-25 15:50 [PATCH] lisp/files.el: Add `file-name-set-extension` Colin Woodbury
2021-05-25 17:48 ` Andreas Schwab
2021-05-25 19:42 ` Colin Woodbury
2021-05-25 18:00 ` Basil L. Contovounesios
2021-05-25 19:45 ` Colin Woodbury
2021-05-25 20:25 ` Stefan Monnier
2021-05-25 21:21 ` Colin Woodbury
2021-05-25 21:29 ` Stefan Monnier
2021-05-25 21:44 ` Colin Woodbury
2021-05-26 7:34 ` Andreas Schwab
2021-05-26 16:31 ` Colin Woodbury
2021-05-26 17:39 ` Andreas Schwab
2021-05-31 1:16 ` Colin Woodbury
2021-06-04 13:08 ` Philipp
[not found] ` <26B660D9-AC76-4AFC-9FFD-2F5D4DCA16C1@acm.org>
2021-06-09 20:54 ` Colin Woodbury
2021-06-09 23:05 ` Stefan Monnier
2021-06-10 0:42 ` Colin Woodbury
2021-06-10 2:45 ` Colin Woodbury
2021-06-10 7:46 ` Michael Albinus
2021-06-10 14:40 ` Colin Woodbury
2021-06-16 1:15 ` Colin Woodbury
2021-06-19 9:16 ` Michael Albinus
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.