Index: apps/misc.c
===================================================================
--- apps/misc.c	(revision 29290)
+++ apps/misc.c	(working copy)
@@ -455,10 +455,18 @@
             if ((audio_status() & AUDIO_STATUS_PLAY) &&
                 !(audio_status() & AUDIO_STATUS_PAUSE))
             {
+                long newpos;
                 if (global_settings.fade_on_stop)
                     fade(false, false);
                 else
                     audio_pause();
+
+                /* 
+                 * Automatic rewind on car adapter pause fixed at 10 seconds 
+                 * for now. Should be made user-configurable.
+                 */
+                newpos = audio_current_track()->elapsed - 10 * 1000;
+                audio_ff_rewind(newpos > 0 ? newpos : 0);
             }
             waiting_to_resume_play = false;
         }
