Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
Commitffc1cd5
committed
bug#21731 Fix emacs link (rubenrua)
This PR was merged into the 2.7 branch.Discussion----------Fix emacs link| Q | A| ------------- | ---| Branch? | 2.7| Bug fix? | yes (minor)| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets | none| License | MIT| Doc PR | noneWhen an Emacs buffer is modified, by default Emacs automatically creates atemporary symlink in the same directory as the file being edited (e.g. Controller.php):```.#Controller.php -> user@host.12345:1296583136```where '12345' is [the Emacs' PID][1].In this case Symfony breaks with a RuntimeException:```SplFileInfo::getMTime(): stat failed for ...Bundle/Controller/.#APIController.php```invendor/symfony/symfony/src/Symfony/Component/Config/Resource/DirectoryResource.phpat line 89```$newestMTime = max($file->getMTime(), $newestMTime);```[1]:https://www.gnu.org/software/emacs/manual/html_node/emacs/Interlocking.htmlCommits-------c6f7ca6 Fix RuntimeException when an Emacs buffer is modified1 file changed
+8
-1
lines changedLines changed: 8 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
87 | 94 | | |
88 | | - | |
| 95 | + | |
89 | 96 | | |
90 | 97 | | |
91 | 98 | | |
| |||
0 commit comments
Comments
(0)